@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans&family=Inter&family=Noto+Sans+JP&display=swap');

:root {
  --theme-color-light: #ffffff;
  --theme-color-dark: #000000;
  --theme-color1: #009fdd;
  --theme-color2: #f4e412;
  --theme-color3: #009fdd;
  --theme-color4: #ed5f00;
  --text-color: #666666;
  --dark-layout-color: #121212;
  --dark-layout-color-two: #333333;
  --headings-color: var(--theme-color-dark);
  --link-color: #200066;
  --link-hover-color: var(--theme-color-dark);
  --title-font: 'Instrument Sans', 'Noto Sans JP', sans-serif;
  --text-font: 'Inter', 'Noto Sans JP', sans-serif;
  --body-font-size: 16px;
  --body-line-height: 30px;
  --body-font-weight: 400;
  --line-height-heading-h1: 1.1em;
  --line-height-heading: 1.2em;
  --line-height-heading-small: 1.4em;
  --h1-font-size: 128px;
  --h2-font-size: 64px;
  --h3-font-size: 32px;
  --h4-font-size: 24px;
  --h5-font-size: 20px;
  --h6-font-size: 18px;
  --h1-font-weight: 700;
  --h2-font-weight: 700;
  --h3-font-weight: 700;
  --h4-font-weight: 700;
  --h5-font-weight: 700;
  --h6-font-weight: 500;
  --sec-title-subtitle-color: var(--theme-color1);
  --sec-title-subtitle-font-size: 16px;
  --sec-title-subtitle-font-family: var(--title-font);
  --sec-title-subtitle-font-weight: 700;
  --sec-title-subtitle-line-height: 24px;
  --sec-title-color: var(--theme-color-dark);
  --sec-title-font-size: var(--h2-font-size);
  --sec-title-font-family: var(--title-font);
  --sec-title-font-weight: var(--h2-font-weight);
  --theme-light-background: #ffffff;
  --theme-light-background-text-color: var(--headings-color);
  --theme-black: #000000;
  --container-width: 1320px;
  --small-container-width: 1050px;
  --large-container-width: 1640px;
  --container-pt: 120px;
  --container-pb: 120px;

  --bs-link-hover-color: #009fdd;
}

.preloader2 {
  position: fixed;
  inset: 0;
  background-image: url(images/background/22.webp); /* ← ここに使いたい画像を指定 */
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-block: 120px; /* PC時の上下の余白 */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.preloader2::before,
.preloader2::after {
  content: '';
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.preloader2::before {
  width: 120px;
  height: 120px;
  background-image: url(GHeC_logo-cursor-light.png);
  animation: spinY 2.5s linear infinite;
  z-index: 1;
  margin: -80px 0 0 0;
}

.preloader2::after {
  width: 170px;
  height: 80px;
  background-image: url(GHeC_logo-cursor-light-text.png);
  z-index: 2;
  margin: 130px 0 0 0;
}

a.--disabled {
  pointer-events: none;
  text-decoration: none;
  cursor: default;
  opacity: 0.25;
}

/* コイン回転アニメーション */
@keyframes spinY {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.loading-text {
  position: absolute;
  top: calc(50% + 110px);
  font-size: 18px;
  color: #333;
  z-index: 3;
  font-weight: 500;
  letter-spacing: 0.1em;
}

b,
strong {
  font-weight: 700;
}

a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: var(--body-font-weight);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a.link-light {
  color: #fff;
  text-decoration: underline;
  font-weight: var(--body-font-weight);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-underline-offset: 4px;
}

footer a.link-light {
  text-decoration: none;
}

footer a.link-light:hover {
  text-decoration: none;
}

a.link-light:hover {
  color: #009fdd !important;
  text-decoration: underline;
  text-decoration-color: #009fdd !important;
}

.disabled a {
  pointer-events: none;
  opacity: 0.5;
  background: #333;
}

.header-style-one .main-box .nav-outer .navigation > li,
.sticky-header .main-menu .navigation > li > a {
  text-transform: none;
  margin-right: 30px;
}

.sticky-header .main-menu .navigation > li {
  margin-left: 16px;
}

.main-menu .navigation > li > a {
  flex-direction: row;
  align-items: center;
}

.main-menu .navigation > li > a i {
  margin: 0 0 0 3px;
  padding: 0 0 3px 0;
}

.sub-title,
.sec-title .sub-title,
a:hover,
.event-block .inner-box:hover .title-box .title {
  color: var(--theme-color3);
}

.sec-title .sub-title {
  text-transform: none;
}

.sec-title h2.about-ghec {
  font-size: 32px;
  word-break: normal;
  overflow-wrap: break-word;
  white-space: normal;
}
.btn-style-one.bg-blue::before {
  background-color: #009fdd;
}

.btn-style-one {
  color: var(--theme-color-light);
  background-color: var(--theme-color3);
}

.btn-style-two {
  color: var(--theme-color-light);
  background-color: var(--theme-color4);
}

.event-tabs .tab-btn.active-btn {
  background-color: #023561;
  color: var(--theme-color-light);
}

.event-tabs .tab-btn.active-btn:before {
  border-top: 17px solid #023561;
}

.header-style-one .main-box .logo-box {
  padding: 8px 10px 8px 19px;
}
.main-header .logo {
  height: 100%;
}
.main-header .logo img {
  height: 50px;
}

.header-style-one .main-box .logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-style-one .main-box .logo-box {
  background-color: #fff;
}

.header-style-one .main-box .logo-box:before {
  border-top: 70px solid #fff;
}

.header-style-one .main-box .logo-box:after {
  border-bottom: 18px solid #fff;
}

.header-style-one .main-box .header-navbar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  background-color: var(--theme-color3);
  border-radius: 0 50px 50px 0;
}

.header-style-one .main-box .nav-outer:after {
  border-top: 18px solid #016b94;
}

.header-style-one .main-box .outer-box .ui-btn {
  color: var(--theme-color3);
  background: #fff;
  border-radius: 50px;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-style-one .main-box .outer-box .ui-btn i {
  padding: 6px 0 0 0;
}

.fv-logo-box {
  display: flex;
  justify-content: center;
}
.fv-logo-box img {
  width: 100%;
  max-width: 300px;
}

.banner-section .content-box .title .banner-small-images img {
  margin-right: -15px !important;
}

.event-block .inner-box {
  padding: 30px 5px 30px 76px;
}

.event-block .inner-box .btn-box {
  display: flex;
  gap: 10px;
}

@media (max-width: 575.98px) {
  .event-block .inner-box {
    padding: 40px 10px;
  }
}
.event-block .inner-box .date-box .date {
  font-size: 70px;
}

.event-block .inner-box .title-box .title {
  font-size: 22px;
  text-transform: none;
}
.event-block .inner-box.list-day-top {
  border-top: 4px solid #666666 !important;
}
.business-contest .gallery-block {
  position: relative;
  width: 30%;
  min-width: 80px;
}
.business-contest .gallery-block img {
  width: auto;
}

.icon-business {
  width: 75px;
  height: 86px;
  background-image: url(images/icons/icon-two.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.business-contest .icon-business {
  position: absolute;
  top: -11px;
  left: -46px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 1;
}

.icon-business-2 {
  width: 75px;
  height: 86px;
  background-image: url(images/icons/icon-two.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.business-contest .icon-business-2 {
  position: absolute;
  top: -40px;
  right: -40px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 2;
}

.business-contest .gallery-block .--text-wrap {
  background: #efefefc2;
  color: #000000;
  border-radius: 7px;
  position: absolute;
  bottom: -24px;
  left: 0;
  width: 90%;
  padding: 1rem;
  margin: 0 5% 0 5%;
}

.business-contest .gallery-block .--text-wrap div {
  line-height: 1;
}

.finalist-swiper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
  border: 6px solid #ddd;
  background: #f9f9f9;
  border-radius: 1rem;
}

.finalist-swiper .swiper-wrapper {
  transition-timing-function: linear;
}

.finalist-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 200px;
  background: #fff;
  border: 4px solid #fff;
  border-radius: 0.75rem;
}

.finalist-swiper .swiper-slide:hover {
  border: 4px solid #007acc;
}
.finalist-swiper .swiper-slide .finalist-logo-wrap {
  height: 120px;
  margin: 16px 0 16px 0;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}

.finalist-swiper .swiper-slide img {
  width: 100%;
  max-width: 120px;
  height: auto;
  padding: 8px;
}

.flag-icon {
  width: 32px;
  height: 24px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 1px;
  margin: 0 0 12px 0;
}

.finalist-swiper .swiper {
  width: 100%;
}

.gallery-section .outer-box {
  overflow: unset;
}

.gallery-section .btn-style-one {
  z-index: 999;
}
section.judge .shape-six {
  position: absolute;
  top: unset;
  bottom: 0;
  left: 0;
}

section.judge .shape-seven {
  position: absolute;
  top: unset;
  bottom: 0;
  right: 0;
}

section.judge .shape-six {
  width: 627px;
  height: 626px;
  background-image: url(images/icons/shape-six-2.png);
}

section.judge .shape-seven {
  width: 627px;
  height: 627px;
  background-image: url(images/icons/shape-seven-2.png);
}

.judge-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 800px;
  justify-content: center;
  margin: 40px auto 0 auto;
  gap: 1rem;
}

.judge-list .judge-single {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
  width: 120px;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
}

.judge-list .judge-single img {
  margin: 0 0 8px 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.judge-list .judge-single .modal-position {
  display: none;
}

.features-section.pavilion {
  background-color: #c4e5d8;
}
.pavilion-list {
  padding: 0;
  display: flex;
  justify-content: center;
  margin: 40px auto 0 auto;
  gap: 2rem;
}

.pavilion-single {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
}

.pavilion-single .icon-five {
  position: absolute;
  top: -20px;
  right: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 1;
}

.pavilion-single .icon-twentyone {
  position: absolute;
  top: -20px;
  left: -46px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 1;
}

.pavilion-single img {
  border-radius: 16px;
}

.pavilion-single .pavilion-text {
  position: absolute;
  bottom: -20px;
  left: 10px;
  padding: 8px 16px;
  background: #fff;
  border-radius: 0.875rem;
}

/* スマホでは縦並びに切り替え */
@media (max-width: 767px) {
  .pavilion-list {
    flex-direction: column;
    align-items: center; /* 子要素を中央寄せ（必要に応じて） */
  }
  .pavilion-single {
    min-width: 300px;
  }
}

.features-section.interactive {
  background-color: #f1ede3;
}

.shape-two.--light {
  width: 715px;
  height: 762px;
  background-image: url(images/top/shape-two-light.png);
}

.main-footer .about-widget .logo {
  width: 170px;
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
}

.main-footer .widgets-section {
  position: relative;
  padding: 100px 0 0 0;
}

.footer-info h5 {
  color: #fff;
  font-size: 16px;
  margin: 30px 0 8px 0;
}
.footer-info li {
  font-size: 14px;
}

.footer-info .widget-title {
  margin-bottom: 30px !important;
}

.footer-menu a {
  font-size: 16px;
  font-weight: bold;
}

.user-links li {
  display: flex;
  align-items: flex-start;
  max-width: 400px;
}

.user-links li a {
  line-height: 1.4;
  height: 34px;
  margin: -3px 0 0 0;
}

.bg-accent {
  background: #fff;
  padding: 30px;
  border-radius: 30px;
  position: relative;
}

.bg-accent::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(images/icons/feature-hover-bg.png);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  z-index: 0;
  border-radius: 30px;
}

.bg-accent.--blue::before {
  background-image: url(images/icons/feature-hover-bg-blue.png);
}

.bg-accent.--green::before {
  background-image: url(images/icons/feature-hover-bg-green.png);
}

.bg-accent.--yellow::before {
  background-image: url(images/icons/feature-hover-bg-yellow.png);
}

/* 背景画像の上に要素を表示するために */
.bg-accent > * {
  position: relative;
  z-index: 1;
}

/* カーソル ポインター マウス pointer */
body {
  cursor: none;
}

.circle {
  position: fixed;
  width: 40px;
  height: 40px;
  left: -20px;
  top: -20px;
  pointer-events: none;
  z-index: 10000;
  background-image: url('GHeC_logo-cursor-0.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  border: 0px solid #000;
  border-radius: 40px;
}

.cursor-btn {
  width: 120px;
}

.cursor-btn.active {
  background-color: rgb(94 194 250);
}

@media (pointer: fine) {
  body {
    cursor: none;
  }

  .circle {
    display: block;
  }
}

@media (pointer: coarse) {
  .circle {
    display: none;
  }
}

.program-type {
  display: inline-block;
  background: #ededed;
  padding: 4px 8px;
  font-size: 14px;
  line-height: 1;
}

/*****
conference
*****/
.page-title .inner-container {
  padding-left: unset;
}

#page-conference .event-block-three.right .inner-box {
  padding: 50px 25px 50px 60px;
  border-radius: 20px 100px 100px 20px;
  overflow: hidden;
}

/* スマホサイズ（例：最大幅767px）でのスタイル上書き */
@media (max-width: 767px) {
  #page-conference .event-block-three.right .inner-box {
    padding: 50px 25px 50px 30px;
    border-radius: 20px; /* 角丸もシンプルに調整するのが◎ */
  }
}

#page-conference .event-block-three .inner-box .content-box .title {
  max-width: unset;
}

#page-conference .session-single .session-num {
  color: #666666;
  background: #fff;
  display: inline-block;
  padding: 4px 6px;
  margin: 0;
  position: absolute;
  top: -34px;
  left: 0px;
  font-size: 14px;
  line-height: 1;
  border-radius: 0;
  border: 1px solid #ddd;
}
#page-conference .session-single .theme-wrap {
  padding: 0 30px 0 30px;
  max-width: unset;
  margin: 16px 0 32px 0;
}

#page-conference .event-block-three .inner-box .content-box .location-box {
  margin-bottom: 32px;
}

#page-conference .session-single .theme-wrap ul li {
  list-style-type: disc;
  line-height: 1.4;
  margin: 0 0 7px 0;
}

#page-conference .session-single .speakers-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.75rem, 1vw, 1.5rem);
}

@media (min-width: 600px) {
  #page-conference .session-single .speakers-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  #page-conference .session-single .speakers-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}

#page-conference .session-single .speakers-wrap .thumb {
  display: flex;
}

#page-conference .session-single .speakers-wrap .thumb img {
  width: 128px;
  height: 128px;
  min-width: 128px;
  min-height: 128px;
  border-radius: 8px;
}

#page-conference .session-single .speakers-wrap .--details {
  display: flex;
  flex-direction: column;
  padding: 0 16px;
}

#page-conference .session-single .speakers-wrap .--details .--type span {
  border: 1px solid #0090ff;
  background: #0090ff;
  font-weight: 400;
  font-size: 14px;
  padding: 2px 4px;
  color: #fff;
}

#page-conference .session-single .speakers-wrap .--details .--type2 span {
  border: 1px solid #0090ff;
  font-weight: 400;
  font-size: 14px;
  padding: 2px 4px;
  color: #0090ff;
}

#page-conference .session-single .speakers-wrap .--details .--name {
  font-weight: bold;
  line-height: 1.4;
}
#page-conference .session-single .speakers-wrap .--details .--name span {
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  line-height: 1.4;
}
#page-conference .session-single .speakers-wrap .--details .--position {
  font-weight: normal;
  font-size: 14px;
  line-height: 1.4;
}

#page-conference .session-single .inner-box:before {
  content: '';
  position: absolute;
  top: -100px;
  left: -10px;
  width: 205px;
  height: 383px;
  background-image: url(./images/icons/shape-three.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 0;
}

#session1,
#session2,
#session3,
#session4,
#session5,
#session6,
#session7,
#session8,
#firesidechat1,
#firesidechat2,
#firesidechat3,
#firesidechat4,
#firesidechat5,
#firesidechat6 {
  scroll-margin-top: 100px; /* 固定ヘッダーの高さに応じて調整 */
}

@media (max-width: 991.98px) {
  .event-block-three {
    width: 100% !important;
  }
}

.event-tabs-three {
  margin-top: unset;
}

h4.session-sub-hedding {
  font-size: 16px;
  margin: 0 0 16px 0;
  padding: 0 0 4px 0;
  border-bottom: 1px solid #ddd;
}

.banner-layer {
  width: 964px;
  height: 100%;
  background-image: url(./images/icons/banner-layer-02.png);
  background-position-x: center;
  opacity: 0.7;
}

.banner-section .content-box .title {
  position: relative;
  color: var(--theme-color-light);
  margin-bottom: 40px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.text-shadow-white {
  text-shadow: 1px 1px 0px rgba(255, 255, 255, 1);
}

.page-title .inner-container .breadcrumb-marquee {
  animation: gallery-one 50s linear infinite;
}
.page-title .inner-container .breadcrumb-marquee .title-two {
  color: #ffffff;
  opacity: 0.1;
  font-size: 60px;
  text-shadow: unset;
}

.page-title {
  padding: 230px 0 50px;
}

@media (max-width: 575.98px) {
  .page-title .inner-container .breadcrumb-marquee .title-two {
    font-size: 30px;
  }
}

.page-title .inner-container .title {
  margin-bottom: 14px;
}

.firesidechat-toppage {
  background: #f1f1f1;
  margin: 30px 0;
  padding: 0 15px 60px 15px;
  border-radius: 1rem;
}

.firesidechat-toppage .outer-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0.5rem;
}

.firesidechat-toppage .outer-box > * {
  height: 100%;
}

.firesidechat-toppage .event-block .inner-box {
  display: flex;
  flex-direction: column;
  border: unset !important;
  border-radius: 1rem;
  min-height: 200px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 30px 20px 30px;
}

.firesidechat-toppage .event-block .inner-box:hover {
  overflow: hidden;
}

.firesidechat-toppage .event-block .inner-box .title-box {
  padding-left: 0;
}

.firesidechat-toppage .event-block .inner-box .title-box .title {
  font-size: 18px;
}

.firesidechat-toppage .event-block {
  max-width: 380px;
}

.firesidechat-toppage .event-block .inner-box .date-box {
  padding: 0 0 10px 0;
}

.firesidechat-toppage .event-block .inner-box .btn-box {
  margin: 0 0 0 auto;
}

.firesidechat-toppage .btn-style-one {
  padding: 8px 8px;
  width: 40px;
  height: 40px;
}

/* Footer */
.event-info-list {
  list-style: none;
  padding: 0;
  color: #fff;
}
.event-info-list .event-info-list-name {
  font-size: 16px;
  color: #fff;
  border-bottom: 1px solid #8c8c8c;
  font-weight: bold;
}

.event-info-list strong {
  color: #fff;
}

.event-info-list li {
  margin-bottom: 1.5em;
}

.event-info-list table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1em;
  margin-bottom: 2em;
}

.event-info-list td {
  padding: 0;
  text-align: left;
  word-wrap: break-word; /* 長い文字列を折り返し */
  color: #c5c5c5;
}

.event-info-list td:first-child {
  width: 90px; /* 項目名の幅 */
  font-weight: bold;
  vertical-align: top;
}

.event-info-list td:nth-child(2) {
  word-break: break-word;
}

.inner-box .icon {
  color: #0090ff !important;
}

.footer-style-one {
  background: #0090ff;
}

.footer-style-one .widgets-section .links-widget {
  padding-left: 0px;
}

/* グローバルメニュー */
@media (max-width: 1199.98px) {
  .header-style-one .main-box .nav-outer .navigation > li {
    margin-right: 18px;
  }
}

@media (max-width: 1399.98px) {
  .header-style-one .main-box .outer-box .btn-box {
    display: block;
  }
  .header-style-one .main-box .outer-box .btn-box .theme-btn {
    max-height: 48px;
    padding: 24px 18px;
  }
}

@media (max-width: 991.98px) {
  .header-style-one .main-box .outer-box .mobile-nav-toggler {
    width: 48px;
    height: 48px;
    font-size: 22px;
    border-radius: 30px;
    right: -8px;
  }
  .header-style-one .main-box .logo-box {
    padding: 8px 10px;
    min-width: 70px;
  }
}

.header-navbar .btn-style-one.dark-bg {
  text-transform: none;
  color: #333;
  background-color: #a5e6ff;
  max-height: 48px;
}

.header-navbar .btn-style-one.dark-bg::before {
  background-color: #200066;
}

.header-navbar .btn-style-one.dark-bg:hover {
  color: #fff !important;
}

.fv-osaka {
  font-size: 32px;
  font-weight: bold;
}

.btn-join-event {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.btn-join-event .--coming {
  font-size: 12px;
}

.sticky-header .nav-outer {
  display: flex;
}

.sticky-header .btn-box {
  display: flex;
  align-items: center;
}

.sticky-header .btn-join-event {
  max-height: 48px;
  padding: 24px 18px;
  text-transform: unset;
  margin: 0 0 0 20px;
}

.sticky-header .mobile-nav-toggler {
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  .mobile-nav-toggler {
    display: none !important;
  }
}

/* デフォルトで768px以上の画面幅では非表示にする */
.pc-hidden {
  visibility: hidden;
}

/* 768px未満では表示する */
@media (max-width: 767px) {
  .pc-hidden {
    visibility: visible;
  }
}

/* language 言語 */

.lang-switcher {
  font-size: 16px;
  line-height: 1;
  font-weight: bold;
  display: flex;
  justify-content: center;
}

.lang-link {
  color: #333;
  text-decoration: none;
  padding: 14px 10px 12px 10px;
  transition: all 0.3s;
  background: #ddd;
  margin: -20px -4px 0 0;
}
.mobile-menu .lang-link {
  margin: 0;
}

.lang-link:hover {
  color: #fff;
  background: #007acc;
}

.lang-link.active {
  color: #fff;
  background: #007acc;
}

.lang.jp {
  display: none;
  font-family: 'Noto Sans JP';
}

@media screen and (max-width: 991px) {
  .header-style-one .main-box .logo-box {
    border-radius: 5px 0 0 5px;
  }
}

.fv-logo-wrap {
  position: absolute;
  top: 174px;
  right: 48px;
  display: flex;
  gap: 1rem;
  flex-direction: row;
  flex-wrap: wrap;
  z-index: 9;
}

.fv-logo-wrap img {
  width: auto;
  height: 48px;
}

@media screen and (max-width: 1200px) {
  .fv-logo-wrap {
    top: 134px;
    right: 32px;
  }
}
@media screen and (max-width: 575px) {
  .fv-logo-wrap {
    top: 110px;
  }
}

@media screen and (max-width: 991px) {
  .fv-logo-wrap img {
    height: 32px;
  }
}

section.finalist-slide {
  margin: -170px 0 0 0;
  z-index: 9;
  position: relative;
}

@media (max-width: 1199px) {
  section.finalist-slide {
    margin: -70px 0 0 0;
    z-index: 9;
    position: relative;
  }
}

/* fv btn */
.fv-left-btn {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .fv-left-btn > div {
    display: flex;
    gap: 30px;
    flex-direction: row;
    justify-content: center;
  }
}

.fv-left-btn .--contact,
.fv-left-btn .--live {
  min-width: 120px;
  color: #fff;
  background: #200066;
  font-weight: bold;
  box-shadow: 7px 9px 7px #20006629;
  margin: 15px 0;
  padding: 15px 5px;
  height: auto;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  flex-direction: column;
  transition: 0.5s;
}

.fv-left-btn .--contact:hover,
.fv-left-btn .--live:hover {
  background: #009fdd;
}

.fv-left-btn .--live .--live-icon {
  width: 50px;
  animation: liveBlink 2s ease-in-out infinite;
  opacity: 1;
}

.fv-left-btn .--live .--archived-icon {
  width: 50px;
  opacity: 1;
}

@keyframes liveBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.scroll-track {
  overflow: hidden;
  position: relative;
  margin-bottom: 2rem;
}

.fv-left-btn .archive-text {
  color: #fff;
  font-size: 14px;
  border-left: 1px solid #fff;
  padding: 20px 0 0 10px;
  width: 90px;
  display: inline-block;
  margin: -20px 0 0 10px;
  text-align: left;
}

.location-box .btn-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-start;
}

@media (max-width: 1199px) {
  .location-box .btn-box {
    justify-content: center;
  }
}

.btn-box .--accent {
  max-width: 600px;
  min-width: 240px;
  width: 50%;
  background: linear-gradient(to right, #009fdd, #200066);
}

@media (max-width: 991px) {
  .fv-left-btn {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 40px 0 0 0;
  }

  .time-countdown .counter-column {
    width: 80px !important;
  }
}

/* スクロール可能にする */
.swiper-wrapper {
  display: flex;
  width: max-content;
  cursor: grab;
  user-select: none;
  scroll-behavior: smooth;
  touch-action: pan-x; /* モバイルでスワイプOK */
}

.swiper-slide {
  flex: 0 0 auto;
  margin-right: 16px;
  white-space: nowrap;
  background: #eee;
  border-radius: 6px;
  padding: 1em;
}

/* 上段：右→左 */
.finalist-01 .swiper-wrapper {
  animation: scroll-left 30s linear infinite;
}
.finalist-01:hover .swiper-wrapper {
  animation-play-state: paused;
}

/* 下段：左→右 */
.finalist-02 .swiper-wrapper {
  animation: scroll-right 30s linear infinite;
}
.finalist-02:hover .swiper-wrapper {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

.finalist-grid {
  padding: 0 1rem;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

/* スマホ用：画面幅が768px未満のとき */
@media (max-width: 767px) {
  .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.5rem;
  }
}

.grid-item {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}

.grid-item img {
  padding: 1rem;
  max-height: 84px;
}

.company-name {
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  font-size: 14px;
}

.flag-icon {
  width: 24px;
  height: auto;
}

.finalist-grid .grid-item {
  background-color: unset;
}

.finalist-grid.bg-flag .flag-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: -1;
}

body.page-invitee .sec-00 {
  text-align: center;
  padding: 80px 0;
}

body.page-invitee .sec-00 img {
  width: 200px;
  max-width: 80%;
}

#page-join-event .join-event-container section.sec-01 {
  margin: 60px auto;
  padding: 0;
  border-top: 0;
}

#page-join-event .join-event-container section.sec-01 h3 {
  font-size: 32px;
  padding: 10px 0px;
  border-top: 0;
  display: inline-block;
  border-bottom: 2px solid;
  margin: 0 0 20px 0;
}

#page-join-event .join-event-container section {
  margin: 60px auto;
  padding: 0;
  border-top: 1px solid #ccc;
}

#page-join-event .join-event-container h3 {
  font-size: 32px;
  margin: -1px 0 0 -15px;
  padding: 25px 15px 10px 15px;
  border-top: 4px solid #009fdd;
  display: inline-block;
}

@media (max-width: 991px) {
  #page-join-event .join-event-container h3 {
    font-size: 22px;
    padding: 22px 15px 0px 15px;
  }
}

#page-join-event .join-event-container section .auto-container {
  max-width: 900px;
}

#page-join-event .btn-box.--register {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}

#page-join-event .btn-box.--register a {
  font-size: 1rem;
  text-transform: none;
  min-width: 300px;
  min-height: 80px;
  margin: 0 1rem 1rem 1rem !important;
}

#page-join-event .btn-box.--register a.--with-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  white-space: unset;
}

#page-join-event .faq-answer {
  margin: 8px 0 0 0;
}

#page-join-event .join-event-container li {
  list-style: disc;
  margin: 0 15px 8px 15px;
  line-height: 1.4;
}

#page-join-event img {
  margin: 0 auto;
  display: flex;
}

#page-join-event ul.list-style-none li {
  list-style: none !important;
  font-size: 14px;
  line-height: 1.6;
  position: relative;
  padding-left: 1.5em; /* インデント調整 */
}

#page-join-event ul.list-style-none li::before {
  content: '※';
  position: absolute;
  left: 0;
  top: 0;
  color: #333;
}

#page-join-event .spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1em;
}

#page-join-event .spec-table th,
#page-join-event .spec-table td {
  border: 1px solid #ccc;
  padding: 0.5em;
  text-align: left;
}

#page-join-event .spec-table thead {
  background-color: #f5f5f5;
}

#page-join-event .error-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5em;
}

#page-join-event .error-table th,
#page-join-event .error-table td {
  border: 1px solid #ddd;
  padding: 1em;
  text-align: left;
  vertical-align: top;
}

#page-join-event .error-table thead {
  background-color: #f0f0f0;
}

#page-join-event .sec-02 .shape-nine {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

#page-join-event .sec-footer {
  background: #e4f7ff;
  margin-bottom: 0 !important;
  padding: 0 0 80px 0 !important;
}

#page-join-event .logo-wrap .inner-wrap {
  background: #ffffff;
  display: block;
  width: 150px;
  height: 150px;
  margin: 0 auto;
  position: relative;
  border-radius: 150px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 3;
}
#page-join-event .logo-wrap img {
  margin: -80px auto 0 auto;
  text-align: center;
  position: relative;
  width: 100px;
  padding: 14px 0 0 0;
}

.join-free {
  font-size: 32px;
  font-weight: var(--h3-font-weight);
  color: #000;
}

.sec-01 .sec-title {
  display: flex;
  margin: -130px auto 20px auto;
  width: 400px;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 90px 10px 20px 10px;
}

.join-free span {
  font-size: 50px;
  background: linear-gradient(90deg, #0070c0, #000b8c); /* 同系色のグラデ */
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.finalist-slide-5 {
  display: flex !important;
  justify-content: center;
}

/* Leader sectiton */

.leader-section .swiper-slide {
  border-radius: 1rem;
}

.leader-section .swiper-slide.swiper-slide-active .leader-single {
  background-image: url(images/icons/bg-24.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.5s;
}

.leader-section .swiper-slide.swiper-slide-active .leader-single:hover {
  transform: scale(1.1);
  transform-origin: top center;
  transition: transform 0.3s ease; /* なめらかな拡大アニメ */
}

.leader-section .slide-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 15px 0;
  padding: 15px 0;
  width: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  padding: 6px 16px;
  color: #fff;
}

.leader-section .slide-content {
  display: flex;
  justify-content: center;
  gap: 5px;
  width: 100%;
}

.leader-section .slide-left,
.leader-section .slide-right {
  padding: 0 5px;
}

.leader-section .slide-left {
  width: 140px;
  overflow-wrap: break-word;
  white-space: normal;
  padding: 0px 0 0px 16px;
}

.leader-section .swiper-slide .slide-left .--name {
  font-size: 22px;
  color: #fff;
  font-weight: 600;
}

.leader-section .swiper-slide .slide-left .--position {
  font-size: 14px;
  color: #fff;
  line-height: 1.2;
  text-align: left;
}

.leader-section .slide-right img {
  width: 90%;
  max-width: 220px;
  margin: 0 0 8px 0;
  border-radius: 8px;
  object-fit: cover;
}

.leader-section .swiper-slide {
  transition: 0.5s;
  transform: scale(0.9) !important;
  opacity: 0.5;
}

.leader-section .swiper-slide.swiper-slide-prev,
.leader-section .swiper-slide.swiper-slide-next {
  overflow: hidden;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.5;
  transform: scale(0.9) !important;
  background: #032a69;
}

.leader-section .swiper-slide.swiper-slide-prev a,
.leader-section .swiper-slide.swiper-slide-next a {
  pointer-events: none;
}

.leader-section .swiper-slide.swiper-slide-active {
  opacity: 1;
  transform: scale(1) !important; /* ← アクティブは拡大 */
}

.leader-section .swiper-slide.swiper-slide-active {
  border: 2px solid #005387;
  border-radius: 1rem;
  overflow: hidden;
}

.leader-section .swiper-slide.swiper-slide-active .slide-title {
  background: #032a69;
  border-bottom: 4px solid yellow;
  width: 100%;
  color: #fff;
}

.leader-section .leader-single {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
}

.leader-section .swiper-slide {
  display: block;
  padding: 0;
}

.leader-section .swiper-button-next,
.leader-section .swiper-button-prev {
  background: #fff;
  border-radius: 50px;
  border: 3px solid;
  width: 60px;
  height: 60px;
}

@media (max-width: 575px) {
  .swiper {
    padding: 0 15px !important;
  }
  .leader-section .slide-left,
  .leader-section .slide-right {
    padding: 0 !important;
  }

  .leader-section .swiper-button-next,
  .leader-section .swiper-button-prev {
    margin: 100px 10px 0 10px;
  }
}

/* page registration */
.faq-item {
  margin-bottom: 1em;
}
.faq-question {
  display: block;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  color: #333;
  padding: 0.5em 1em 0.5em 1em;
  background: #f0f0f0;
  border-radius: 4px;
  transition: background 0.2s ease;
}
.faq-question:hover {
  background: #e0e0e0;
}
.faq-answer {
  display: none;
  padding: 0.5em 1em 0.5em 2em;
  background: #fafafa;
  border-radius: 0 0 4px 4px;
}
.faq-answer.open {
  display: block;
}

/* registration */

#page-join-event h4 {
  margin: 16px 0 8px 0;
  font-size: 18px;
}

/* page message */

.page-message .about-section .image-box .image-outer .icon-twentyfour {
  position: absolute;
  bottom: 0px;
  left: 0;
}

@media (max-width: 1199.98px) {
  .page-message .about-section .outer-box.two .image-box {
    display: block;
    margin: 0 auto;
  }
}

@media (max-width: 1199.98px) {
  .page-message .about-section .icon-one,
  .page-message .about-section .icon-two {
    display: block;
  }
}

.page-message h2 {
  font-size: 32px;
}
.page-message .judge-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  justify-content: center;
  margin: 40px auto 0 auto;
  gap: 1rem;
}

.page-message .judge-list .judge-single {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
  width: 150px;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
}

.page-message .judge-list .judge-single img {
  margin: 0 0 8px 0;
  width: 150px;
  height: 150px;
  border-radius: 8px;
  object-fit: cover;
}

.message-interview-wrap p {
  color: #333;
}

.message-interview-wrap h6 {
  color: #007acc;
  font-weight: bold;
  font-size: 16px;
}

/* fireside chat */
.firesidechatwrap .theme-wrap,
.firesidechatwrap .content-box h4:first-of-type,
.firesidechatwrap .thumb .--type,
.firesidechatwrap .thumb .--type2 {
  display: none !important;
}

.fv-notice {
    max-width: 340px;
    position: absolute;
    background: #ffffffd4;
    color: #009fdd;
    border: 4px solid #009fdd;
    border-radius: 1rem;
    padding: 1rem;
    font-size: 18px;
    line-height: 1.4;
    font-weight: bold;
    margin: 0 auto 50px auto;
    top: 25%;
    right: 0;
}

.fv-notice span.--label {
    border: 2px solid #009fdd;
    color: #fff;
    background: #009fdd;
    margin: 8px auto 6px auto;
    padding: 2px 4px;
    font-size: 16px;
    display: block;
    text-align: center;
    max-width: 200px;
    border-radius: 4px;
}

.fv-notice span.--date {
  font-size: 16px;
}
@media (min-width: 1024px) {
    .fv-notice {
        font-size: 20px; /* ← PCサイズで大きく */
    }
}

@media (max-width: 1199px) {
    .fv-notice {
        position: relative;
    }
}

.location-box{
    display: flex;
}

.center-only {
  position: absolute;
  left: 40%;
}
@media screen and (max-width: 1036px) {
  .center-only {
    position: relative;  /* 並びを変えずに擬似要素の基準にする */
    overflow: hidden;
    margin-top: 10px;    /* 必要に応じて隙間調整 */

  }

}