/* ==============================
   MWC Barcelona 2026 - PC用CSS
   すべてのセレクタは #pageMWC の入れ子
   ============================== */

/* スムーススクロール */
html {
  scroll-behavior: smooth;
}

/* ページ全体 */
#pageMWC {
  overflow: hidden;
}

/* --- リセット --- */
#pageMWC * {
  box-sizing: border-box;
}

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

/* ==============================
   ファーストビュー
   ============================== */
#pageMWC .mwc-fv {
  position: relative;
  width: 100%;
  height: 520px;
  background: url('/corp/set/data/technology/research/mwc2026/img/bg/fv__bg.webp') no-repeat center center;
  background-size: cover;
}

#pageMWC .mwc-fv__inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 163px 0 0 119px;
}

#pageMWC .mwc-fv__title {
  font-family: 'Funnel Display', sans-serif;
  font-weight: 400;
  font-size: 68px;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}

#pageMWC .mwc-fv__subtitle {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 27px;
  line-height: 1.8;
  color: #fff;
  margin: 40px 0 0;
}

#pageMWC .mwc-fv__scroll {
  position: absolute;
  right: 49px;
  bottom: 42px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: opacity 0.3s;
}

#pageMWC .mwc-fv__scroll:hover {
  opacity: 0.8;
}

#pageMWC .mwc-fv__scroll svg {
  width: 32px;
  height: 32px;
}

/* ==============================
   About
   ============================== */
#pageMWC .mwc-about {
  background-color: #04093d;
}

#pageMWC .mwc-about__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  min-height: 650px;
  padding: 0 160px;
  gap: 30px;
}

#pageMWC .mwc-about__image {
  flex-shrink: 0;
  width: 400px;
  height: 420px;
}

#pageMWC .mwc-about__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#pageMWC .mwc-about__text {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 2;
  color: #fff;
  width: 590px;
  margin-left: auto;
}

/* ==============================
   下部セクション背景ラッパー
   ============================== */
#pageMWC .mwc-lower {
  background: url('/corp/set/data/technology/research/mwc2026/img/bg/main__bg.webp') no-repeat center top;
  background-size: cover;
}

/* ==============================
   MWC Map
   ============================== */
#pageMWC .mwc-map {
  max-width: 1440px;
  margin: 0 auto;
  padding: 200px 160px 0;
}

#pageMWC .mwc-map__title {
  font-family: 'Funnel Display', sans-serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.1;
  color: #fff;
  text-align: center;
  letter-spacing: 1.5px;
  margin: 0 0 50px;
}

#pageMWC .mwc-map__card {
  background: #fff;
  border-radius: 10px;
  padding: 30px 0 40px;
}

#pageMWC .mwc-map__subtitle {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.6;
  color: #04093d;
  text-align: center;
  margin: 0 0 5px;
}

#pageMWC .mwc-map__description{
  text-align: center;
}

#pageMWC .mwc-map__image {
  width: 100%;
  margin: 0 auto;
}

#pageMWC .mwc-map__img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==============================
   Topics
   ============================== */
#pageMWC .mwc-topics {
  max-width: 1440px;
  margin: 0 auto;
  padding: 160px 160px 0;
}

#pageMWC .mwc-topics__title {
  font-family: 'Funnel Display', sans-serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.1;
  color: #fff;
  text-align: center;
  letter-spacing: 1.5px;
}

.mwc-topics__description{
  font-size: 16px;
  line-height: 2;
  padding: 20px 0 50px;
  color: #fff;
  text-align: center;
}

.mwc-topics__close{
  font-size: 16px;
  line-height: 2;
  color: #fff;
  text-align: center;
  padding-bottom: 150px!important;
}

/* メイン記事カード */
#pageMWC .mwc-topics__main {
  display: flex;
  /* width: 1120px; */
  height: 230px;
  background: #04093d;
  border-radius: 10px;
  overflow: hidden;
  transition: opacity 0.3s;
}

#pageMWC .mwc-topics__main:hover {
  opacity: 0.85;
}

#pageMWC .mwc-topics__main-thumb {
  flex-shrink: 0;
  width: 350px;
  height: 230px;
  overflow: hidden;
  border-radius: 10px 0 0 10px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

#pageMWC .mwc-topics__main-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#pageMWC .mwc-topics__main-body {
  padding: 25px 50px 25px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#pageMWC .mwc-topics__main-category {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}

#pageMWC .mwc-topics__main-date {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  color: #aaa;
  margin: 2px 0 0;
}

#pageMWC .mwc-topics__main-text {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
  color: #fff;
  margin: 16px 0 0;
}

/* サブカードグリッド */
#pageMWC .mwc-topics__grid {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 100px 35px;
  margin-top: 100px;
}

/* サブカード */
#pageMWC .mwc-topics__card {
  display: block;
  width: 100%;
  background: #04093d;
  border-radius: 10px;
  overflow: hidden;
  transition: opacity 0.3s;
}

#pageMWC .mwc-topics__card:hover {
  opacity: 0.85;
}

#pageMWC .mwc-topics__card-thumb {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  border-radius: 10px 10px 0 0;
}

#pageMWC .mwc-topics__card-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#pageMWC .mwc-topics__card-body {
  padding: 25px 30px 30px;
}

#pageMWC .mwc-topics__card-category {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}

#pageMWC .mwc-topics__card-date {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  color: #aaa;
  margin: 0;
}

#pageMWC .mwc-topics__card-text {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: #fff;
  margin: 23px 0 0;
}

/* ==============================
   もっと見る
   ============================== */
#pageMWC .mwc-more {
  padding: 100px 0 30px;
  text-align: center;
}

#pageMWC .mwc-more__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 60px;
  border: none;
  border-radius: 30px;
  background: #fff;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #000;
  letter-spacing: 1.28px;
  text-align: center;
  transition: background 0.3s, color 0.3s;
}

#pageMWC .mwc-more__button:hover {
  background: #fff;
  color: #04093d;
}

/* もっと見る：非表示状態 */
#pageMWC .mwc-topics__card.is-hidden {
  display: none;
}
