@charset "UTF-8";
body {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.side-menu {
  background-color: #fff;
  border-right: #333 1px solid;
  display: flex;
  justify-content: center;
  padding: 80px 20px;
  box-sizing: border-box;
  z-index: 10;
}
@media (min-width: 769px) {
  .side-menu {
    width: 15%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
  }
}
@media (max-width: 768px) {
  .side-menu {
    width: 100%;
    height: auto;
    position: fixed; /* スマホ表示時にヘッダーを固定 */
    top: 0;
    left: 0;
    display: block;
    padding: 10px 20px;
  }
}

.side-menu-content {
  color: #333;
}
@media (max-width: 768px) {
  .side-menu-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}
.side-menu-content .site-logo {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
  margin-bottom: 40px;
}
.side-menu-content nav ul {
  list-style: none;
  padding: 0;
}
@media (max-width: 768px) {
  .side-menu-content nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 99;
  }
}
.side-menu-content nav li {
  margin-bottom: 40px;
  text-align: center;
}
.side-menu-content nav a {
  font-size: 1rem;
  color: #333;
  transition: opacity 0.3s;
  text-decoration: none;
}
.side-menu-content nav a:hover {
  opacity: 0.7;
}

.side-menu__hamburger {
  display: none;
}
@media (max-width: 768px) {
  .side-menu__hamburger {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 100;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
  }
  .side-menu__hamburger span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: transform 0.3s, top 0.3s, opacity 0.3s;
  }
  .side-menu__hamburger span:nth-child(1) {
    top: 0;
  }
  .side-menu__hamburger span:nth-child(2) {
    top: 10px;
  }
  .side-menu__hamburger span:nth-child(3) {
    top: 20px;
  }
}

.side-menu.is-open .side-menu-content nav {
  opacity: 1;
  visibility: visible;
}
.side-menu.is-open .side-menu__hamburger span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}
.side-menu.is-open .side-menu__hamburger span:nth-child(2) {
  opacity: 0;
}
.side-menu.is-open .side-menu__hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}

body.is-menu-open {
  overflow: hidden;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #fff;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
.button:hover {
  background-color: #fff;
  color: #000;
}

.button-area {
  text-align: right;
  margin-top: 20px;
}

.c-button {
  display: inline-block;
  padding: 10px 30px;
  background-color: #333;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: opacity 0.3s ease;
}
.c-button:hover {
  opacity: 0.8;
}

.c-button-area {
  text-align: center;
  margin-top: 40px;
}
.c-button-area--flex {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.c-card-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 0;
  list-style: none;
  margin: 0 0 40px;
}

.c-card {
  border: 1px solid #eee;
  border-radius: 8px;
  background-color: #fff;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.c-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}
.c-card__thumbnail {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.c-card__content {
  padding: 20px;
}
.c-card__date {
  display: block;
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.5em;
}
.c-card__title {
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.6;
}

.news-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media (max-width: 768px) {
  .news-card-grid {
    grid-template-columns: 1fr;
  }
}

.news-card {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  transition: background-color 0.3s;
}
.p-entrance .news-card {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.p-subpage .news-card {
  background-color: #f5f5f5;
  color: #333;
}
.news-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.news-card-thumbnail {
  width: 100%;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.news-card-body {
  padding: 15px;
}
.news-card-title {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-meta {
  font-size: 0.8rem;
  margin-bottom: 0.5em;
  opacity: 0.8;
}
.news-card-category {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  margin-left: 0.5em;
}

.c-section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-top: 0;
  margin-bottom: 40px;
}
.c-page-hero .c-section-title {
  color: white;
  margin-bottom: 0;
}
.c-section-title span {
  display: block;
  font-size: 1.2rem;
  margin-top: 0.5em;
}

.c-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.c-pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-decoration: none;
  color: rgba(13, 31, 73, 0.6431372549);
  font-weight: bold;
}
.c-pagination__item.is-current {
  background-color: rgba(13, 31, 73, 0.6431372549);
  color: white;
  border-color: rgba(13, 31, 73, 0.6431372549);
}

.l-container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}
.l-container--card {
  max-width: 1000px;
  padding-right: 0;
  padding-left: 0;
  margin: 0 auto;
}
.l-container--narrow {
  max-width: 720px;
  /* 中央寄せするためのマージンを追加 */
  margin-right: auto;
  margin-left: auto;
}

.l-footer {
  font-size: 0.8rem;
  text-align: center;
}
.l-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-right: 20px;
}
@media (min-width: 769px) {
  .l-footer {
    position: fixed;
    bottom: 20px;
    left: 15%;
    width: 85%;
    z-index: 9;
    text-align: right;
    padding-right: 40px;
  }
}
@media (max-width: 768px) {
  .l-footer {
    background-color: rgba(13, 31, 73, 0.6431372549);
    padding: 10px 20px;
  }
}
.l-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 768px) {
  .l-footer__inner {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .l-footer__left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.l-footer__logo {
  display: inline-block;
  margin-bottom: 20px;
}
.l-footer__logo img {
  max-width: 180px;
  height: auto;
}
.l-footer__nav {
  margin-bottom: 30px;
}
.l-footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .l-footer__nav ul {
    justify-content: center;
  }
}
.l-footer__nav a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.l-footer__nav a:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .l-footer__right {
    margin: 20px auto 0;
  }
}

.c-sns-links {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-sns-links a {
  color: white;
  transition: opacity 0.3s ease;
}
.c-sns-links a:hover {
  opacity: 0.7;
}
.c-sns-links a i {
  font-size: 28px; /* アイコンサイズを調整 */
}

.c-copyright {
  font-size: 0.8rem;
  color: #aaa;
  margin: 0;
}

.c-breadcrumb {
  margin-bottom: 40px;
  font-size: 0.8rem;
}
.c-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-breadcrumb li {
  color: #666;
}
.c-breadcrumb li:not(:last-child)::after {
  content: ">";
  margin: 0 0.5em;
}
.c-breadcrumb a {
  color: #337ab7;
  text-decoration: none;
}

/*
  エントランスLP専用スタイル
  ================================================ */
.p-entrance {
  /* PCレイアウト (769px以上) */
  /* 各セクションの背景画像（ダミー） */
}
@media (min-width: 769px) {
  .p-entrance {
    display: flex;
    overflow-x: hidden; /* 横スクロールバーを隠す */
  }
}
@media (min-width: 769px) {
  .p-entrance .main-content {
    margin-left: 15%;
    overflow-y: hidden; /* 縦スクロールバーを非表示 */
    overflow-x: scroll; /* 横スクロールを有効化 */
    -webkit-overflow-scrolling: touch; /* iOSでの慣性スクロール */
    scroll-snap-type: x mandatory; /* 横方向のスクロールスナップを有効化 */
    scroll-behavior: smooth; /* スクロールを滑らかにする */
    /* スクロールバーを非表示にする */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
  .p-entrance .main-content::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 768px) {
  .p-entrance .main-content {
    width: 100%;
    margin-left: 0;
    padding-top: 65px;
    overflow-x: hidden; /* 横スクロールを無効化 */
  }
}
@media (min-width: 769px) {
  .p-entrance .scroll-container {
    display: flex;
    width: 600%; /* 6セクション × 100% */
    height: 100vh;
  }
}
@media (max-width: 768px) {
  .p-entrance .scroll-container {
    display: block; /* flexを解除 */
    width: 100%;
    height: auto;
  }
}
.p-entrance .section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 40px;
  box-sizing: border-box;
  scroll-snap-align: start; /* セクションの開始位置をスナップポイントに */
  /* 背景画像用の疑似要素 */
  /* オーバーレイ用の疑似要素 */
}
.p-entrance .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: kenburns 20s ease-out infinite alternate;
}
.p-entrance .section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
@media (min-width: 769px) {
  .p-entrance .section {
    width: 16.6666%; /* 100% / 6セクション */
    height: 100vh;
  }
}
@media (max-width: 768px) {
  .p-entrance .section {
    width: 100%;
    height: 100vh; /* 各セクションが画面の高さを持つ */
  }
}
.p-entrance .section-content {
  position: relative;
  z-index: 1;
}
.p-entrance #top {
  align-items: center;
}
.p-entrance #top .watermark-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.7;
  width: 50%;
  max-width: 700px;
  pointer-events: none;
}
.p-entrance #top .watermark-logo img {
  width: 100%;
  height: auto;
}
.p-entrance #top .top-concept-content {
  width: 100%;
  max-width: 1400px;
  text-align: left;
  position: relative;
  z-index: 1;
}
@media (min-width: 769px) {
  .p-entrance #top .top-concept-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (min-width: 769px) {
  .p-entrance #top .top-concept-main {
    display: flex;
    gap: 80px;
    margin-bottom: 170px;
  }
}
@media (min-width: 769px) {
  .p-entrance #top .concept-text__wrapper {
    flex: 1;
  }
}
@media (min-width: 769px) {
  .p-entrance #top .top-concept-origin {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 900px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
  }
}
.p-entrance #top .top-concept-origin h3 {
  font-size: 0.9rem;
}
.p-entrance #top .top-concept-origin .concept-text {
  font-size: 0.8rem;
  line-height: 1.7;
}
.p-entrance #top .top-concept__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .p-entrance #top .top-concept__title {
    font-size: 1.5rem;
  }
}
.p-entrance #top h3 {
  color: #fff;
  font-size: 1.2rem;
  margin: 0 0 15px;
}
.p-entrance #top .concept-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
.p-entrance #top .concept-text:not(:last-child) {
  margin-bottom: 1em;
}
.p-entrance #top::before {
  background-image: url("../img/index/top-bg.jpg");
}
.p-entrance #news,
.p-entrance #interview {
  align-items: center;
}
.p-entrance .news-grid,
.p-entrance .interview-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  width: 100%;
  max-width: 1400px;
  align-items: center;
}
@media (max-width: 768px) {
  .p-entrance .news-grid,
  .p-entrance .interview-grid {
    grid-template-columns: 1fr;
  }
}
.p-entrance .news-concept-area,
.p-entrance .interview-concept-area {
  text-align: left;
  padding: 0 20px;
}
.p-entrance .news-concept-area .section-title,
.p-entrance .interview-concept-area .section-title {
  font-size: 2.5rem;
  margin: 0 0 20px 0;
  color: #fff;
}
.p-entrance .news-concept-area .concept-text,
.p-entrance .interview-concept-area .concept-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #fff;
}
.p-entrance #news::before {
  background-image: url("../img/index/news-bg.jpg");
}
.p-entrance #interview::before {
  background-image: url("../img/index/interview-bg.jpg");
}
.p-entrance #offline,
.p-entrance #baristars {
  align-items: center;
}
.p-entrance #offline::before {
  background-image: url("../img/index/offline-bg.jpg");
}
.p-entrance #baristars::before {
  background-image: url("../img/index/baristars-bg.jpg");
}
.p-entrance #sponsors .section-title {
  font-size: 2.5rem;
  margin: 0 0 40px 0;
  color: #fff;
}
.p-entrance #sponsors .sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
  justify-items: center;
}
@media (max-width: 768px) {
  .p-entrance #sponsors .sponsor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-entrance #sponsors .sponsor-logo img {
  max-width: 100%;
  height: auto;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.p-entrance #sponsors .sponsor-logo img:hover {
  opacity: 1;
}
.p-entrance #sponsors .sponsor-logo .sponsor-name {
  color: #fff;
  font-size: 0.9rem;
  margin-top: 10px;
  opacity: 0.7;
}
.p-entrance #sponsors::before {
  background-image: url("../img/index/sponsors-bg.jpg");
}
.p-entrance .project-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  width: 100%;
  max-width: 1400px;
  align-items: center;
}
.p-entrance .project-grid--reverse {
  direction: rtl;
}
.p-entrance .project-grid--reverse .project-text-area {
  direction: ltr;
}
@media (max-width: 768px) {
  .p-entrance .project-grid {
    grid-template-columns: 1fr;
    direction: ltr !important;
  }
  .p-entrance .project-grid .project-text-area {
    direction: ltr !important;
  }
}
.p-entrance .project-text-area {
  text-align: left;
}
.p-entrance .project-text-area .project-logo {
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
}
.p-entrance .project-text-area .section-title {
  font-size: 2.5rem;
  margin: 0 0 20px 0;
  color: #fff;
}
.p-entrance .project-text-area .concept-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #fff;
}
.p-entrance .project-text-area .button-area--left {
  text-align: left;
  margin-top: 30px;
}
.p-entrance .button-area--center {
  text-align: center;
  margin-top: 40px;
}
.p-entrance .project-image-area img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .p-entrance .scroll-arrows {
    display: none;
  }
}
.p-entrance .scroll-arrow {
  position: fixed;
  top: 36px;
  transform: translateY(-50%);
  z-index: 11;
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 1;
  visibility: visible;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}
.p-entrance .scroll-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}
.p-entrance .scroll-arrow--left {
  right: 390px;
}
.p-entrance .scroll-arrow--left::after {
  transform: translate(-25%, -50%) rotate(-135deg);
}
.p-entrance .scroll-arrow--right {
  right: 340px;
}
.p-entrance .scroll-arrow--right::after {
  transform: translate(-75%, -50%) rotate(45deg);
}
.p-entrance .scroll-arrow.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.p-entrance .scroll-nav {
  position: fixed;
  top: 30px;
  right: 30px;
  transform: none;
  width: 300px;
  z-index: 10;
}
@media (max-width: 768px) {
  .p-entrance .scroll-nav {
    display: none;
  }
}
.p-entrance .scroll-nav__dots {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0 5px;
  margin: 0 0 15px;
}
.p-entrance .scroll-nav__dot {
  display: block;
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: background-color 0.3s;
}
.p-entrance .scroll-nav__dot:hover {
  background-color: rgba(255, 255, 255, 0.6);
}
.p-entrance .scroll-nav__dot.is-active {
  background-color: #fff;
}
.p-entrance .scroll-nav__progress-bar {
  width: 100%;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
}
.p-entrance .scroll-nav__progress-fill {
  width: 0;
  height: 100%;
  background-color: #fff;
  border-radius: 2px;
  transition: width 0.1s linear;
}

.p-article-header {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  text-align: center;
}
@media (max-width: 1024px) {
  .p-article-header {
    display: block;
    border-bottom: none;
  }
}

.p-article-title {
  font-size: 2rem;
  margin: 0 0 10px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .p-article-title {
    font-size: 1.5rem;
  }
}

.p-article-layout {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 40px;
}
@media (max-width: 1024px) {
  .p-article-layout {
    display: block;
  }
}

.p-article-body {
  line-height: 1.8;
}
.p-article-body h2 {
  font-size: 1.5rem;
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eee;
}
.p-article-body h3 {
  font-size: 1.2rem;
  margin: 30px 0 15px;
  padding-left: 10px;
  border-left: 4px solid #ddd;
}
.p-article-body p {
  margin: 0 0 20px;
}
.p-article-body figure {
  margin: 40px 0;
}
.p-article-body figure img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}
.p-article-body figure figcaption {
  font-size: 0.8rem;
  color: #666;
  text-align: center;
  margin-top: 10px;
}

.p-article-eyecatch {
  margin: 0 0 40px;
}
.p-article-eyecatch img {
  width: 100%;
}

.p-article-toc {
  position: sticky;
  top: 100px;
}
@media (max-width: 1024px) {
  .p-article-toc {
    position: static;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 40px 0;
  }
}
.p-article-toc h3 {
  margin: 0 0 15px;
  padding: 0;
  border: none;
  font-size: 1.1rem;
}
.p-article-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-article-toc li {
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.p-article-toc li:last-child {
  margin-bottom: 0;
}
.p-article-toc a {
  text-decoration: none;
  color: #337ab7;
}

blockquote {
  margin: 40px 0;
  padding: 0;
  border: none;
}

.p-article-full-bleed {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  max-width: none;
}
.p-article-full-bleed img {
  border-radius: 0;
}

.p-article-afterword {
  margin-top: 60px;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.p-article-credit {
  font-size: 0.8rem;
  color: #666;
  text-align: right;
}

.p-article-profile {
  margin-top: 60px;
}
.p-article-profile__content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.p-article-profile__image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-article-talk {
  margin: 40px 0;
}
.p-article-talk__item {
  margin-bottom: 25px;
  line-height: 1.8;
}
.p-article-talk__item.is-question {
  display: block;
  font-weight: bold;
  margin-bottom: 1em;
  padding: 1em;
  border-left: 3px solid #ccc;
  background-color: #f9f9f9;
  border-radius: 8px;
}
.p-article-talk__speaker {
  background-color: #f0f0f0;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.9rem;
  color: #333;
  font-weight: bold;
  margin-right: 0.5em;
}
.p-article-talk p {
  display: inline;
  margin: 0;
}

.sponsor-list {
  margin: 40px 0;
}

.sponsor-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}
.sponsor-item:first-child {
  border-top: 1px solid #eee;
}
@media (max-width: 768px) {
  .sponsor-item {
    flex-direction: column;
  }
}
.sponsor-item__logo {
  flex-shrink: 0;
  width: 200px;
}
.sponsor-item__name {
  font-size: 1.2rem;
  margin: 0 0 10px;
}

/*
  下層ページ用レイアウト
  ================================================ */
.p-subpage {
  background-color: #fff;
  color: #333;
  overflow-x: hidden;
}
@media (min-width: 769px) {
  .p-subpage .sub-page-wrapper {
    margin-left: 15%;
  }
}
@media (max-width: 768px) {
  .p-subpage .sub-page-wrapper {
    padding-top: 65px;
  }
}
.p-subpage .c-page-hero {
  background-color: rgba(13, 31, 73, 0.6431372549);
  padding: 60px 20px;
  text-align: center;
}
.p-subpage .news-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}/*# sourceMappingURL=style.css.map */