@charset "UTF-8";

h3.title {
  font-size: 35px;
  font-weight: 700;
  padding-top: 1em;
}

h3.title span:not(.eng) {
  display: block;
  font-weight: 700;
  font-size: 18px;
}
h4.title {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  h3.title {
    font-size: 30px;
  }
}
@media screen and (max-width: 580px) {
  h3.title {
    font-size: 28px;
  }

  h3.title span:not(.eng) {
    font-size: 16px;
  }
  h4.title {
    font-size: 18px;
  }
}

/* ===== メインビジュアル 4層構造 ===== */
#mv {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 20px 40px 0;
  box-sizing: border-box;
}

/* Layer 1: 動画背景 */
.mv_video_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.mv_video_bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Layer 2: 透過画像オーバーレイ */
.mv_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.mv_overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Layer 3: ロゴ+ボタンエリア（左側） */
.mv_logo_area {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  flex: 0 0 auto;
}

.mv_logo img {
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.mv_buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: -1em;
}

.mv_buttons .btn {
    display: flex;
    width: 100%;
    text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.mv_buttons .btn:hover {
  transform: translateY(-2px);
}

/* Layer 4: テキスト+カウントダウンエリア（右側） */
.mv_content_area {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 0 0 auto;
  color: white;
}
.mv_content_area * {
  color: white;
  /* text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7); */
  font-weight: 700;
}

.mv_title {
  font-size: clamp(20px, 7.5vw, 58px);
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
}

.mv_subtitle {
  font-size: clamp(12px, 3.6vw, 23px);
  margin-bottom: 24px;
  box-sizing: border-box;
  letter-spacing: 0.1em;
}

.mv_date {
  font-size: 2.1vw;
}
.mv_date .highlight{
  font-size: 2.5vw;
}
.mv_date .material-icons{
  font-size: 2.3vw;
  vertical-align: top;
}

.mv_time {
  font-size: 1.5vw;
  font-weight: 900;
}

.mv_venue {
  font-size: 1.8vw;
}

/* 幕張メッセとボタンの横並び配置 */
.mv_venue_button_area {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.mv_venue_button_area .mv_venue {
  margin: 0;
  flex-shrink: 0;
}

.mv_venue_button_area .mv_buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 0;
}

.mv_venue_button_area .mv_buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* カウントダウン */
.mv_countdown {
  text-align: right;
  margin-left: auto;
}

.countdown_title {
  font-size: 1.8vw;
  font-weight: 700;
  margin-bottom: 0;
  display: inline-block;
  line-height: 1.2;
}

.countdown_display {
  display: inline-flex;
  gap: 4px;
  justify-content: center;
  align-items: baseline;
}

.countdown_item {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.countdown_number {
  display: block;
  font-size: 4.33vw;
  line-height: 1;
  margin-top: 0.5em;
}

.countdown_label {
  display: block;
  font-size: 2.3vw;
  line-height: 1;
}
  
@media screen and (min-width: 1450px) {

  /* Layer 4: テキスト+カウントダウンエリア（右側） */
  .mv_title {
    font-size:58px;
  }
  
  .mv_subtitle {
    font-size:23px;
  }
  
  .mv_date {
    font-size: 24px;
  }
  .mv_date .highlight{
    font-size: 42px;
  }
  .mv_date .material-icons{
    font-size: 28px;
    vertical-align: middle;
  }
  
  .mv_time {
    font-size: 22px;
  }
  
  .mv_venue {
    font-size: 22px;
  }
  
  /* カウントダウン */
  .countdown_title {
    font-size: 22px;
  }
  .countdown_number {
    font-size: 43.33px;
  }
  .countdown_label {
    font-size: 24px;
  }
}


@media screen and (max-width: 1024px) {
  #mv {
    padding: 0 20px 20px;
    gap: 10px;
  }
  
  .mv_logo img {
    max-width: 320px;
  }
  
  .mv_countdown {
    padding:0 0 24px;
  }
  
}

@media screen and (max-width: 920px) {
  #mv {
    padding: 0 20px 20px;
    gap: 0px;
  }

  .mv_title {
    font-size: clamp(20px, 7.5vw, 48px);
  }
  
  .mv_subtitle {
    font-size: clamp(12px, 3.6vw, 19px);
  }
  
  .mv_date {
    font-size: 2.2vw;
  }
  .mv_date .highlight {
    font-size: 4.5vw;
  }
  .mv_date .material-icons {
    font-size: 3.3vw;
    vertical-align: middle;
  }
  .mv_venue {
    font-size: 2.4vw;
  }
  .mv_time {
    font-size: 2.5vw;
}
}

@media screen and (max-width: 768px) {
  #mv {
    flex-direction: column;
    justify-content: center;
    padding: 0px 20px;
    gap: 0px;
    align-items: center;
  }

  .mv_logo_area,
  .mv_content_area {
    align-items: center;
  }
  
  .mv_content_area {
    text-align: center;
  }
  
  .mv_logo img {
    max-width: 280px;
  }
  
  .mv_buttons {
    flex-direction: row;
    gap: 12px;
  }
  
  .mv_buttons .btn {
    font-size: 14px;
    padding: 10px 40px 10px 16px;
    min-width: 240px;
  }
  .mv_subtitle {
    margin-bottom: 10px;
    letter-spacing: normal;
  }

  .mv_date {
    font-size: 3.0vw;
  }
  .mv_date .highlight {
    font-size: 4.5vw;
}
.mv_date .material-icons {
  font-size: 3.3vw;
  vertical-align: middle;
}
  .mv_venue {
    font-size: 3.4vw;
  }
  .mv_time {
    font-size: 2.5vw;
}
  
  .countdown_display {
    gap: 12px;
  }
}

@media screen and (max-width: 767px) {
  .mv_venue_button_area {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
  }
  
  .mv_venue_button_area .mv_venue {
    margin: 0;
  }
  
  .mv_venue_button_area .mv_buttons {
    justify-content: center;
  }
}

@media screen and (max-width: 580px) {
  .mv_title,
  .mv_subtitle {
    width: auto;
    max-width: 100%;
  }
}

@media screen and (max-width: 600px) {
  #mv {
    min-height: 500px;
    padding: 20px 16px;
    gap: 30px;
  }
  
  .mv_title,
  .mv_subtitle {
    width: auto;
    max-width: 100%;
  }

  .mv_logo img {
    max-width: 240px;
  }
  
  .mv_date {
    font-size: 16px;
  }
  .mv_date .highlight {
    font-size: 20px;
  }
  .mv_date .material-icons {
    font-size: 18px;
    vertical-align: middle;
  }
  
  .mv_time {
    font-size: 16px;
  }
  
  .mv_venue {
    font-size: 18px;
  }
  
  .countdown_title {
    font-size: 16px;
  }
  
  .countdown_number {
    font-size: 32px;
  }
  
  .countdown_label {
    font-size: 18px;
  }
  
  .mv_buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .countdown_display {
    gap: 8px;
  }
}

@media screen and (max-width: 480px) {
  #mv {
    min-height: 500px;
    padding: 20px 16px;
    gap: 30px;
  }
  .mv_title,
  .mv_subtitle {
    width: auto;
    max-width: 100%;
  }

  .mv_logo img {
    max-width: 240px;
  }
  
  .mv_date {
    font-size: 14px;
  }
  .mv_date .highlight {
    font-size: 18px;
  }
  .mv_date .material-icons {
    font-size: 16px;
    vertical-align: middle;
  }
  
  .mv_time {
    font-size: 14px;
  }
  
  .mv_venue {
    font-size: 16px;
  }
  
  .countdown_title {
    font-size: 14px;
  }
  
  .countdown_number {
    font-size: 28px;
  }
  
  .countdown_label {
    font-size: 16px;
  }
  
  .mv_buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .countdown_display {
    gap: 8px;
  }
}


@media screen and (max-width: 360px) {
  .mv_title,
  .mv_subtitle {
    width: auto;
    max-width: 100%;
  }
}



/* Topics Styles */
.topics {
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.topics_title {
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  letter-spacing: 1px;
  margin: 0;
  flex-shrink: 0;
}

.topics_content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.topics_slider_container {
  flex: 1;
  overflow: hidden;
  height: 20px;
}

.topics_slider_track {
  display: flex;
  flex-direction: column;
  animation: slideUp 12s infinite;
}

.topics_item {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 20px;
  line-height: 20px;
  white-space: nowrap;
}

.topics_date {
  font-size: 14px;
  color: #666666;
  font-weight: 500;
  flex-shrink: 0;
}

.topics_text {
  font-size: 14px;
  color: #333333;
  font-weight: 500;
}

@keyframes slideUp {
  0%, 40% {
    transform: translateY(0);
  }
  50%, 90% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ホバー時にアニメーション一時停止 */
.topics:hover .topics_slider_track {
  animation-play-state: paused;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .topics {
    padding: 8px 20px;
    gap: 10px;
  }
  
  .topics_content {
    align-items: flex-start;
    gap: 5px;
    width: 100%;
    overflow: hidden;
  }
  
  .topics_slider_container {
    height: 60px;
    min-height: 60px;
  }
  
  .topics_slider_track {
    animation: slideUpMobile 12s infinite;
  }
  
  .topics_title {
    font-size: 14px;
    min-width: 60px;
  }
  
  .topics_item {
    gap: 10px;
    height: 60px;
    line-height: 1.4;
    align-items: center;
    padding: 5px 0;
  }
  
  .topics_date {
    font-size: 12px;
    min-width: 60px;
  }
  
  .topics_text {
    font-size: 12px;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100vw - 160px);
    line-height: 1.4;
  }
}

@keyframes slideUpMobile {
  0%, 40% {
    transform: translateY(0);
  }
  50%, 90% {
    transform: translateY(-60px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Featured Contents Slider Styles */
.featuredContents {
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  --bg-image: url('./images/featured_PickUp.webp'); /* デフォルト画像を設定 */
}

.featuredContents::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(40px);
  transform: scale(1.1);
  z-index: 0;
  opacity: 0.8;
}

.featuredContents::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: -1;
}

.featured_slider_container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  position: relative;
  padding: 20px 0 40px 20px;
  border-radius: 16px;
}

.featured_cards {
  position: relative;
  width: 60%;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
  perspective: 1000px;
  max-width: 700px;
  margin: 0 auto;
  margin-top: 30px;
}

.featured_card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform-style: preserve-3d;
}

.featured_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured_card:nth-child(1) { z-index: 8; transform: translateZ(0px) translateY(0px); }
.featured_card:nth-child(2) { z-index: 7; transform: translateZ(-20px) translateY(8px); }
.featured_card:nth-child(3) { z-index: 6; transform: translateZ(-40px) translateY(16px); }
.featured_card:nth-child(4) { z-index: 5; transform: translateZ(-60px) translateY(24px); }

.featured_card.active {
  z-index: 10 !important;
  transform: translateZ(20px) translateY(-10px) scale(1.05) !important;
  box-shadow: 0 20px 40px rgba(0, 102, 204, 0.3);
}

.featured_card.active img {
  transform: scale(1.02);
}

.card_next_btn,
.content_link_btn {
  position: absolute;
  bottom: -20px;
  right: -20px;
  border: none;
  border-radius: 50%;
  border: 3px solid #fff;
  background: transparent;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
  transition: all 0.3s ease;
  z-index: 15;
}

.card_next_btn:hover,
.content_link_btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.card_next_btn {
  width: 100px;
  height: 100px;
}

.card_next_btn .material-icons {
  font-size: 36px;
}

.content_link_btn {
  width: 80px;
  height: 80px;
}

.content_link_btn .material-icons {
  font-size: 32px;
}

.featured_navigation {
  width: 38%;
  padding-left: 30px;
}

.nav_list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
  min-height: 400px;
}

.nav_item {
  padding: 16px 20px;
  margin-bottom: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 102, 204, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.5;
  transform: scale(0.98);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav_item.active {
  opacity: 1;
  transform: scale(1);
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(233, 30, 99, 0.3);
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.15);
}

.nav_item:hover {
  opacity: 1;
  transform: scale(1);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav_item_content {
  flex: 1;
}

.nav_item .category {
  font-size: 11px;
  color: white;
  background: #5a4fcf;
  padding: 4px 12px;
  border-radius: 16px;
  display: inline-block;
  margin: 0 0 8px 0;
  font-weight: 700;
}

.nav_item.active .category {
  background: #e91e63;
}

.nav_item[data-index="0"] .category {
  background: var(--conf); /* Blue for CONFERENCE */
}

.nav_item[data-index="1"] .category {
  background: var(--ai); /* Orange for AXパーク */
}

.nav_item[data-index="2"] .category {
  background: var(--partners); /* Green for パートナーズ&グローバルパーク */
}

.nav_item[data-index="3"] .category {
  background: var(--next); /* Purple for ネクストジェネレーションパーク */
}

.nav_item[data-index="0"].active .category {
  background: var(--conf); /* Darker blue when active */
}

.nav_item[data-index="1"].active .category {
  background: var(--ai); /* Darker orange when active */
}

.nav_item[data-index="2"].active .category {
  background: var(--partners); /* Darker green when active */
}

.nav_item[data-index="3"].active .category {
  background: var(--next); /* Darker purple when active */
}

.nav_item .material-icons {
  color: #666;
  font-size: 20px;
  margin-left: 12px;
  transition: color 0.3s ease;
}

.nav_item.active .material-icons {
  color: #e91e63;
}

.nav_item[data-index="0"].active .material-icons {
  color: var(--conf);
}

.nav_item[data-index="1"].active .material-icons {
  color: var(--ai);
}

.nav_item[data-index="2"].active .material-icons {
  color: var(--partners);
}

.nav_item[data-index="3"].active .material-icons {
  color: var(--next);
}

.nav_item[data-index="0"].active {
  border-color: var(--conf); /* Blue border */
  box-shadow: 0 4px 15px rgba(246, 128, 16, 0.15);
}

.nav_item[data-index="1"].active {
  border-color: var(--ai);
  box-shadow: 0 4px 15px rgba(61, 181, 228, 0.15);
}

.nav_item[data-index="2"].active {
  border-color: var(--partners); 
  box-shadow: 0 4px 15px rgba(245, 226, 19, 0.15);
}

.nav_item[data-index="3"].active {
  border-color: var(--next); /* Darker purple when active */
  box-shadow: 0 4px 15px rgba(225, 32, 143, 0.15);
}

.featuredContents .title {
  color: white;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 2px 20px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 100;
}
.featuredContents .title span{
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 2px 20px rgba(0, 0, 0, 0.6);
}

/* Responsive Design */


@media screen and (max-width: 1024px) {

  .featured_slider_container {
    flex-direction: column;
    gap: 40px;
    padding: 30px 20px;
  }
  
  .featured_cards {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .featured_navigation {
    width: 100%;
    padding-left: 0px;
    
  }
  
  .nav_items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: auto;
    min-height: 250px;
  }
}

@media screen and (max-width: 768px) {

  .featured_cards {
    height: 250px;
  }
  
  .nav_item {
    padding: 15px;
  }
  
}

@media screen and (max-width: 480px) {
  .featured_cards {
    height: 200px;
  }
  
  .nav_item {
    padding: 12px;
  }
  
  .nav_item .category {
    font-size: 12px;
    padding: 3px 10px;
  }
  
}


/* Other Contents Section */
.otherContents {
  background: linear-gradient(135deg, #f2bdd9 0%, #f4f1c7 50%, #bbe1f3 100%);
  padding: 50px 0 80px;
  margin-bottom: -30px;
  margin-top: -30px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.otherContents .title {
  text-align: left;
  padding-top: 0;
}

.otherContents .title .eng {
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.other_contents_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.other_content_item {
  border-radius: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}

.other_content_item:hover {
  transform: translateY(-5px);
}

.other_content_item .content_image_wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: visible;
  border-radius: 15px;
}

.other_content_item .content_image_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.other_content_item:hover .content_image_wrapper img {
  transform: scale(1.05);
}

.content_info {
  padding: 20px 0;
  text-align: left;
}

.content_title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 15px;
}

.content_description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #222;
  margin: 0;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .otherContents {
    padding: 30px 0 60px;
  }
  
  .other_contents_grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .content_title {
    font-size: 1.4rem;
  }
}

/* CEATEC 2025 全景図 Section */
.venueMap {
  padding: 60px 0;
  width: 100%;
  background: url(/ja/images/bg_map.webp);
  background-size: cover;
}

.venueMap .container {
  position: relative;
}

.venue_map_title {
  font-size: 1.6rem;
  text-align: left;
  font-weight: 700;
}

.venue_map_title .title_highlight{
  font-size: 2.5rem;
  font-weight: 700;
}

.venue_map_image {
  position: relative;
  overflow: hidden;
}

.venue_map_image img {
  width: 100%;
  height: auto;
  display: block;
}

.venue_info_btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  transition: all 0.3s ease;
  z-index: 10;
}

.venue_info_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.venue_info_btn .btn_text {
  font-size: 1rem;
}

.venue_info_btn .material-icons {
  font-size: 20px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .venueMap {
    padding: 40px 0;
  }
  
  .venue_map_title {
    font-size: 2rem;
  }
  
  .venue_info_btn {
    bottom: 10px;
    right: 20px;
  }
  
  .venue_info_btn .btn_text {
    font-size: 0.9rem;
  }
}

/*============================
ノーマルバナーエリア
============================*/
.bnr_normal_area {
  margin: 30px 0 30px;
}
.bnr_normal_area ul {
  display: flex;
  justify-content: center;
}
.bnr_normal_area ul li {
  max-width: 320px;
  margin-left: 10px;
  margin-right: 10px;
  border: 1px solid #f7f7f7;
}

/*============================
.experience
============================*/
.experience {
  padding: 30px 0;
  position: relative;
  background: rgb(249, 183, 216);
  background: -o-linear-gradient(315deg, rgb(249, 183, 216) 0%, rgb(118, 205, 240) 100%);
  background: linear-gradient(135deg, rgb(249, 183, 216) 0%, rgb(118, 205, 240) 100%);
}
.experience .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.experience h3 {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 1%;
  max-width: 100%;
}

.experience .btn {
  margin-right: 0;
}

.experience_slide {
  width: 100%;
  margin-top: 20px;
}

.experience_slide .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.experience_slide .slick-slide {
  height: auto !important;
}

.experience_slide .item a {
  display: block;
  margin-left: 5%;
  margin-right: 5%;
  text-decoration: none;
  -webkit-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}

.experience_slide .item a:hover {
  opacity: 1;
}

.experience_slide .item a figure {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.experience_slide .item a figure img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}

.experience_slide .item a:hover figure img {
  opacity: 1;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.experience_slide .item a .description {
  padding-top: 0.5em;
  color: #000;
}
@media screen and (max-width: 768px) {
  .experience {
    padding-bottom: 80px;
  }
  .experience {
    margin-top: 0;
  }
  .experience_slide .slick-slide {
    margin-bottom: 10px;
  }
  .experience .experience_slide .slick-arrow {
    position: absolute;
    bottom: -30px;
    top: unset;
    background: none;
    border: none;
    color: #fff;
    z-index: 50;
    font-weight: bold;
    font-size: 12px;
    font-family: "LINESeedJP", sans-serif;
    cursor: pointer;
    padding: 0;
  }
  .experience .experience_slide .slick-arrow span {
    border: 2px solid #fff;
    border-radius: 500px;
    padding: 5px;
    font-size: 20px;
    display: inline-block;
    margin: 0 5px;
    line-height: 1;
    -webkit-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
  }

  .experience .experience_slide .slick-arrow:hover span {
    background-color: #fff;
    color: #192b4d;
  }
  .experience .experience_slide .slick-prev {
    left: 10px;
  }
  .experience .experience_slide .slick-next {
    right: 10px;
  }
}

/*============================
中段バナーエリア
============================*/
.bnr_area {
  margin: 50px 0 0;
}
.bnr_area ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.bnr_area ul li {
  max-width: 336px;
  margin-left: 10px;
  margin-right: 10px;
}

/*============================
information
============================*/

.information {
  background-color: #fff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
