@charset "UTF-8";
/* ====================================================================================
共通レイアウト、共通コンポーネント、各ページスタイル定義、wordpressテーマスタイル上書き
======================================================================================= */
/* ===========================================
変数定義
=========================================== */
/* ===========================================
mixin定義
=========================================== */
/**
 * ブレイクポイントの定義（Tailwind CSSを参照）
 */
/**
 * レスポンシブを設定
 */
/**
 * hoverアニメーションをPCのみに制御
 */
/**
 * line-heightによるハーフレディングの余白を取り除く
 */
/* ===========================================
function定義
=========================================== */
/**
 * px→rem自動計算
 */
/**
 * px→em自動計算
 */
/* ===========================================
ベーススタイル定義
=========================================== */
body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  text-decoration: none;
  cursor: pointer;
  transition: filter 0.3s;
}
a:hover {
  filter: brightness(0.9);
}

/* --------------------------
共通レイアウト
-------------------------- */
.container {
  width: 90%;
  margin-inline: auto;
  max-width: 1000px;
}

.section {
  padding-bottom: 60px;
}

.br-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .br-sp {
    display: none;
  }
}

.br-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .br-pc {
    display: none;
  }
}

/* --------------------------
font-family共通設定（@extendで使用）
init.phpでgoogle font読込
-------------------------- */
.zen-kaku-gothic-new-bold, .smb-section__subtitle, .access__icon-pin, .contents__body--text,
.contents__body h4 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700 !important;
  font-style: normal;
}

.zen-kaku-gothic-new-black, .contents__body--heading, .event-intro__vision-match--title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900 !important;
  font-style: normal;
}

.barlow-medium, .contents__body--num {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.font-prompt {
  font-family: prompt, sans-serif;
  font-style: normal;
}

/* --------------------------
モーダル（Micromodal）
-------------------------- */
.modal {
  display: none;
  position: relative;
  z-index: 99999;
  position: absolute;
}
.modal.is-open {
  display: block;
}
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal__container {
  background-color: #fff;
  padding: 10px 15px 40px;
  width: 90%;
  max-width: 500px;
  max-height: 95svh;
  overflow-y: scroll;
  box-sizing: border-box;
  margin-inline: auto;
  border: 1px solid #222222;
}
@media screen and (min-width: 1024px) {
  .modal__container {
    max-width: 1300px;
    padding: 10px 50px 40px;
    padding-bottom: 70px;
  }
}
.modal__header {
  display: flex;
  justify-content: end;
  align-items: center;
}
.modal__close {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.modal__close::before {
  content: "✕";
  font-size: 1.75em;
  color: #333;
}
.modal .profile-title {
  color: #0C48C7;
  position: relative;
  letter-spacing: 0.1rem;
  margin-bottom: 10px;
}
.modal .profile-title::after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: rgba(12, 72, 199, 0.2);
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 70%;
  left: 90px;
}
@media screen and (min-width: 1024px) {
  .modal .profile-title::after {
    width: 88%;
  }
}
.modal .theme-title {
  color: #0C48C7;
  letter-spacing: 0.1rem;
  margin-bottom: 10px;
  position: relative;
}
.modal .theme-title::after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: rgba(12, 72, 199, 0.2);
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 75%;
  left: 75px;
}
@media screen and (min-width: 1024px) {
  .modal .theme-title::after {
    width: 95%;
  }
}
.modal .episode-title {
  color: #0C48C7;
  letter-spacing: 0.1rem;
  margin-bottom: 10px;
  position: relative;
}
.modal .episode-title::after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: rgba(12, 72, 199, 0.2);
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 20%;
  left: 245px;
}
@media screen and (min-width: 1024px) {
  .modal .episode-title::after {
    width: 70%;
  }
}
.modal__guest--time {
  font-size: 1.25rem;
  margin-bottom: 15px;
  font-weight: bold;
}
@media screen and (min-width: 1024px) {
  .modal__guest--time {
    font-size: 1.5625rem;
  }
}
.modal__guest--title {
  font-size: 1.375rem;
  color: #0C48C7;
  margin-bottom: 30px;
  font-weight: bold;
  position: relative;
  padding-left: 15px;
}
.modal__guest--title::before {
  position: absolute;
  width: 2px;
  height: 100%;
  content: "";
  left: 0;
  top: 0;
  background-color: #FF7200;
}
@media screen and (min-width: 1024px) {
  .modal__guest--title {
    font-size: 2rem;
  }
}
.modal__guest__profile {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .modal__guest__profile {
    flex-direction: row;
    justify-content: space-between;
  }
}
.modal__guest__profile figure {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .modal__guest__profile figure {
    flex-grow: 0;
    flex-shrink: 0;
    max-width: 360px;
  }
}
.modal__guest__profile--career {
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .modal__guest__profile--career {
    font-size: 1.25rem;
  }
}
.modal__guest__profile .episode-content {
  font-weight: bold;
  margin-bottom: 20px;
}
.modal__guest__profile .sns-icons {
  margin-bottom: 20px;
}
.modal__guest__profile--name {
  font-weight: bold;
  font-size: 1.625rem;
  color: #FF7200;
}
@media screen and (min-width: 1024px) {
  .modal__guest__profile--name {
    font-size: 2.1875rem;
  }
}
.modal__guest__profile--name small {
  font-size: 1.125rem;
  padding-left: 15px;
  font-weight: normal;
}
@media screen and (min-width: 1024px) {
  .modal__guest__profile--name small {
    font-size: 1.25rem;
  }
}
.modal__guest__profile--job {
  margin-bottom: 20px;
}
.modal__session--time {
  font-size: 1.25rem;
  margin-bottom: 15px;
  font-weight: bold;
}
@media screen and (min-width: 1024px) {
  .modal__session--time {
    font-size: 1.5625rem;
  }
}
.modal__session--title {
  font-size: 1.375rem;
  color: #0C48C7;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  padding-left: 15px;
}
.modal__session--title::before {
  position: absolute;
  width: 2px;
  height: 100%;
  content: "";
  left: 0;
  top: 0;
  background-color: #FF7200;
}
@media screen and (min-width: 1024px) {
  .modal__session--title {
    font-size: 2rem;
  }
}
.modal__session--lead {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
  .modal__session--lead {
    font-size: 1.25rem;
    margin-bottom: 50px;
  }
}
.modal__session .guest-profile {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .modal__session .guest-profile {
    flex-direction: row;
    justify-content: space-between;
  }
}
.modal__session .guest-profile__inner {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .modal__session .guest-profile__inner {
    max-width: 50%;
  }
}
.modal__session .guest-profile__head {
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.modal__session .guest-profile__head figure {
  width: 75px;
  height: 75px;
  flex-grow: 0;
  flex-shrink: 0;
}
.modal__session .guest-profile__head figure > img {
  border-radius: 50%;
}
.modal__session .guest-profile__head--name {
  font-size: 1.25rem;
  font-weight: bold;
}
.modal__session .guest-profile__item {
  margin-bottom: 10px;
  color: #0C48C7;
  letter-spacing: 0.02px;
}
@media screen and (min-width: 1024px) {
  .modal__session .guest-profile__item.profile-title::after {
    width: 85%;
    left: 73px;
  }
}
.modal__session .guest-profile__content {
  text-align: justify;
}
.modal .sns-icons {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.modal .sns-icons a {
  color: #000;
}
.modal .sns-icons a .svg-inline--fa {
  height: 1.7em;
}
.modal .sns-icons a .icon-note {
  width: 24px;
  height: auto;
  margin-top: -5px;
  margin-left: 3px;
}
.modal__asple--title {
  font-size: 1.375rem;
  color: #0C48C7;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  padding-left: 15px;
}
.modal__asple--title::before {
  position: absolute;
  width: 2px;
  height: 100%;
  content: "";
  left: 0;
  top: 0;
  background-color: #FF7200;
}
@media screen and (min-width: 1024px) {
  .modal__asple--title {
    font-size: 2rem;
  }
}
.modal__asple--theme {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .modal__asple--theme {
    font-size: 1.25rem;
    margin-bottom: 25px;
  }
}
.modal__asple--flex {
  width: 100%;
  display: flex;
  gap: 20px;
  flex-direction: column;
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .modal__asple--flex {
    gap: 40px;
    flex-direction: row;
  }
}
.modal__asple--outline {
  flex-grow: 0;
  flex-shrink: 0;
  font-weight: bold;
}
.modal__asple--outline > p {
  margin-bottom: 10px;
}
.modal__asple--outline > p:last-child {
  margin-bottom: 0;
}
.modal__asple--outline > p > span {
  color: #0C48C7;
  padding: 5px 8px 3px;
  background-color: #E1EBFF;
  display: inline-block;
  font-size: 0.875rem;
  margin-right: 10px;
  vertical-align: middle;
}
.modal__asple--prize {
  color: #fff;
  background-color: #FF7200;
  font-weight: bold;
  font-size: 1.125rem;
  padding: 15px 20px;
}
@media screen and (min-width: 1024px) {
  .modal__asple--prize {
    padding: 10px;
    text-align: center;
  }
}
.modal__asple--prize > span {
  color: #FF7200;
  display: inline-block;
  text-align: center;
  width: 100%;
  background-color: #fff;
  font-size: 1rem;
  margin-bottom: 10px;
  padding: 3px 0 1px;
}
@media screen and (min-width: 1024px) {
  .modal__asple--prize > span {
    margin-bottom: 0;
    margin-right: 20px;
    width: auto;
    padding: 5px 20px;
  }
}
.modal.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3 s cubic-bezier(0, 0, 0.2, 1);
}
.modal.micromodal-slide .modal__container, .modal.micromodal-slide .modal__overlay {
  will-change: transform;
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}

/* --------------------------
CTA
-------------------------- */
.cta-btn {
  position: fixed !important;
  bottom: 10px;
  right: 10px;
  text-align: center;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .cta-btn {
    max-width: 430px;
    bottom: 2%;
    line-height: 1.5;
  }
}
.cta-btn > a {
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-top: 3px;
}
.cta-btn__guide {
  margin-bottom: 10px;
  background-color: #0C48C7;
  width: 78px;
  height: 78px;
  font-size: 0.75rem;
  border: 1px solid #072C7A;
}
@media screen and (min-width: 768px) {
  .cta-btn__guide {
    width: 115px;
    height: 115px;
    font-size: 1rem;
  }
}
.cta-btn__apply {
  background-color: #FF7200;
  width: 100px;
  height: 100px;
  border: 1px solid #AD3B0A;
  position: relative;
}
.cta-btn__apply > i {
  padding-top: 3px;
  display: inline-block;
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) {
  .cta-btn__apply > i {
    font-size: 1.2rem;
  }
}
.cta-btn__apply::after {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
}
@media screen and (min-width: 768px) {
  .cta-btn__apply {
    width: 135px;
    height: 135px;
    font-size: 1.125rem;
  }
}

/* ----------------------------------------------------
トップページ
---------------------------------------------------- */
.main-visual__copy {
  width: 520px;
  padding-top: 230px;
}

/* 
aboutセクション 
*/
.about {
  margin-top: 0 !important;
}
.about__catch-copy {
  background: #fff;
  -webkit-clip-path: polygon(5% 0, 100% 0%, 95% 100%, 0% 100%);
          clip-path: polygon(5% 0, 100% 0%, 95% 100%, 0% 100%);
  padding: 10px 20px !important;
  font-size: 1em;
  width: 80%;
  text-align: center;
  max-width: 330px;
  margin-inline: auto;
  border-bottom: none;
}
@media screen and (min-width: 1024px) {
  .about__catch-copy {
    font-size: 1.25em;
    margin-bottom: 30px;
  }
}
.about__content-wrapper p {
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .about__content-wrapper p {
    text-align: center;
  }
}

/* 
about下イベントリンク 
*/
.event-intro__vision-summit--title {
  font-size: 3.875rem;
  letter-spacing: 0.3rem;
  line-height: 1;
  font-weight: 900;
}
@media screen and (min-width: 1024px) {
  .event-intro__vision-summit--title {
    font-size: 4.625rem;
    margin-bottom: 30px;
  }
}
.event-intro__vision-summit--date {
  margin-bottom: 40px !important;
}
@media screen and (min-width: 1024px) {
  .event-intro__vision-summit--date {
    margin-bottom: 50px !important;
  }
}
.event-intro__vision-match--title {
  line-height: 1.2;
  letter-spacing: 0.3rem;
  font-size: 3.125rem;
}
@media screen and (min-width: 1024px) {
  .event-intro__vision-match--title {
    font-size: 4.375rem;
    margin-bottom: 20px;
  }
}
.event-intro__vision-match--date {
  margin-bottom: 40px !important;
}
@media screen and (min-width: 1024px) {
  .event-intro__vision-match--date {
    margin-bottom: 50px !important;
  }
}

/* 
contentsセクション
*/
.contents {
  position: relative;
  background-color: #fff;
  margin-bottom: 260px !important;
}
@media screen and (min-width: 1024px) {
  .contents {
    margin-bottom: 180px !important;
  }
}
.contents:last-child {
  margin-bottom: 0 !important;
}
.contents__inner {
  max-width: 1280px;
  margin-inline: auto;
}
.contents__img {
  position: absolute;
  top: -190px;
  max-width: 850px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .contents__img {
    width: 57%;
    top: auto;
    bottom: 0;
  }
}
.contents__img-left {
  left: 0;
}
.contents__img-right {
  right: 0;
}
.contents__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 40px 20px 40px;
}
@media screen and (min-width: 1024px) {
  .contents__body {
    width: 43%;
    height: 400px;
  }
}
.contents__body--num {
  color: #FF7200;
  margin-bottom: 15px;
  font-size: 1.5rem;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .contents__body--num {
    font-size: 1.75rem;
  }
}
.contents__body--heading {
  margin-bottom: 15px;
  color: #0C48C7;
  font-size: 2rem;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .contents__body--heading {
    font-size: 3rem;
    margin-bottom: 25px;
  }
}
.contents__body--heading span {
  color: #0C48C7;
  font-size: 18px;
  padding: 8px 13px 10px;
  background-color: #E1EBFF;
  display: inline-block;
  margin-top: 15px;
}
@media screen and (min-width: 1024px) {
  .contents__body--heading span {
    margin-top: 0px;
    margin-left: 20px;
    vertical-align: bottom;
  }
}
.contents__body h4 {
  margin-bottom: 25px;
  line-height: 1;
  font-size: 1.25rem;
}
.contents__body-left {
  margin-inline-end: auto;
  padding-left: 15px;
}
.contents__body-right {
  margin-inline-start: auto;
  padding-right: 15px;
}

/* guestセクション */
.guest__card-wrapper {
  display: flex;
  flex-direction: row;
  row-gap: 5px;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .guest__card-wrapper {
    gap: 35px;
  }
}
.guest__card {
  width: 49%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .guest__card {
    width: 31%;
    margin-inline: 0;
    max-width: none;
  }
}
.guest__card--body {
  background-color: #0C48C7;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .guest__card--body {
    padding: 20px 20px 25px;
  }
}
.guest__card--career {
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .guest__card--career {
    margin-bottom: 20px;
  }
}
.guest__card--name {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 15px;
  background: #fff;
  color: #FF7200;
  padding: 10px;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .guest__card--name {
    font-size: 1.625rem;
  }
}
.guest__card--job {
  margin-bottom: 15px;
  color: #fff;
  font-size: 0.875rem;
}
@media screen and (min-width: 1024px) {
  .guest__card--job {
    font-size: 1rem;
  }
}
.guest__card .more-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 9px;
  text-align: center;
  width: 100%;
  display: inline-block;
}
@media screen and (min-width: 1024px) {
  .guest__card .more-link {
    font-size: 1rem;
  }
}

/* time-tableセクション */
.time-table .time-table-border {
  border-bottom: 1px solid rgba(34, 34, 34, 0.2);
}
.time-table__body dl {
  display: flex;
  flex-direction: column;
  padding: 25px 0;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .time-table__body dl {
    flex-direction: row;
    padding: 30px 0;
    gap: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .time-table__body dl {
    font-size: 1em;
  }
}
@media screen and (min-width: 768px) {
  .time-table__body dl.exists-talk-theme {
    align-items: center;
  }
}
.time-table__body dl dt {
  flex-shrink: 0;
  min-width: 115px;
  font-size: 1.125rem;
}
@media screen and (min-width: 1024px) {
  .time-table__body dl dt {
    min-width: 200px;
  }
}
.time-table__body dl dd {
  flex-shrink: 1;
  font-weight: 600;
  width: 100%;
  font-size: 1.25rem;
}
@media screen and (min-width: 1024px) {
  .time-table__body dl dt,
  .time-table__body dl dd {
    font-size: 1.375em;
  }
}
.time-table__body.vision-match dl {
  padding: 25px 0 0;
}
@media screen and (min-width: 1024px) {
  .time-table__body.vision-match dl {
    padding: 25px 0;
    align-items: center;
  }
}
.time-table__body.vision-match dl.partner dt {
  font-size: 1.125rem;
}
@media screen and (min-width: 1024px) {
  .time-table__body.vision-match dl.partner dt {
    font-size: 1.375rem;
  }
}
.time-table__body.vision-match dl.partner dd {
  background: #ff7200;
  box-shadow: 4px 4px 0 rgba(34, 34, 34, 0.3);
  color: #fff;
  border: 1px solid #222222;
  font-size: 1.25rem;
  padding: 20px;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .time-table__body.vision-match dl.partner dd {
    font-size: 1.375rem;
  }
}
.time-table .break-block {
  background-color: rgb(255, 255, 255);
  padding: 5px 0;
  text-align: center;
  color: #575757;
}
@media screen and (min-width: 768px) {
  .time-table .break-block {
    font-size: 1.25rem;
  }
}
.time-table .talk-session {
  background: #0C48C7;
  border: 1px solid #222222;
  color: #fff;
  padding: 20px;
  font-weight: normal;
  box-shadow: 4px 4px 0 rgba(34, 34, 34, 0.3);
}
@media screen and (min-width: 768px) {
  .time-table .talk-session {
    padding: 30px;
  }
}
.time-table .talk-session__title-wrapper {
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
}
.time-table .talk-session__title-num {
  font-size: 1.125rem;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 7px 15px 5px;
  line-height: normal;
}
@media screen and (min-width: 1024px) {
  .time-table .talk-session__title-num {
    font-size: 1.25rem;
  }
}
.time-table .talk-session__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .time-table .talk-session__title {
    font-size: 1.5rem;
  }
}
.time-table .talk-session .guests {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .time-table .talk-session .guests {
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
  }
}
.time-table .talk-session .guests__inner {
  display: flex;
  min-width: 240px;
}
.time-table .talk-session .guests__inner figure {
  max-width: 65px;
  margin-right: 10px;
  margin-bottom: 0 !important;
  flex-shrink: 0;
  flex-grow: 0;
}
.time-table .talk-session .guests__inner figure > img {
  border-radius: 50px;
}
@media screen and (min-width: 1024px) {
  .time-table .talk-session .guests__inner figure {
    max-width: 75px;
  }
}
.time-table .talk-session .guests__profile {
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .time-table .talk-session .guests__profile {
    flex-grow: 0;
    flex-shrink: 0;
  }
}
.time-table .talk-session .guests__profile--name {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: initial;
}
@media screen and (min-width: 768px) {
  .time-table .talk-session .guests__profile--name {
    font-size: 1.25rem;
  }
}
.time-table .talk-session .guests__profile--job {
  font-size: 0.875rem;
  line-height: initial;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .time-table .talk-session .guests__profile--job {
    font-size: 1rem;
  }
}
.time-table .talk-session .more-link {
  font-size: 1rem;
  font-weight: 600;
  color: #ff7200;
  background-color: #fff;
  border-radius: 30px;
  padding: 9px 0;
  text-align: center;
  width: 100%;
}
.time-table .talk-session .more-link.pc {
  max-width: 180px;
  display: none;
}
@media screen and (min-width: 768px) {
  .time-table .talk-session .more-link.pc {
    display: inline-block;
  }
}
.time-table .talk-session .more-link.sp {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .time-table .talk-session .more-link.sp {
    display: none;
  }
}

/* outlineセクション */
@media screen and (min-width: 1024px) {
  .outline__table {
    min-width: 800px;
    margin-inline: auto;
  }
}
.outline__table td {
  min-width: 90px;
}
@media screen and (min-width: 1024px) {
  .outline__table td {
    min-width: 130px;
  }
}
.outline__table td,
.outline__table th {
  border: none !important;
  border-bottom: 1px solid rgba(34, 34, 34, 0.2) !important;
  padding: 20px 0px !important;
  font-size: 0.875rem;
}
@media screen and (min-width: 1024px) {
  .outline__table td,
  .outline__table th {
    font-size: 1rem;
  }
}
.outline__table td a,
.outline__table th a {
  text-decoration: underline;
}
.outline__table td a:hover,
.outline__table th a:hover {
  text-decoration: none;
}

/* faqセクション */
/* accessセクション */
.access__icon-pin {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}
@media screen and (min-width: 1024px) {
  .access__icon-pin {
    font-size: 1.5rem;
  }
}
.access__icon-pin > img {
  width: 28px;
  margin-top: 3px;
}

/* previous-eventセクション */
.previous-event .smb-balloon {
  align-items: center;
}
.previous-event .smb-balloon__body {
  border-radius: 0px;
  box-shadow: 4px 4px 0 rgba(34, 34, 34, 0.3);
}
.previous-event .smb-balloon__body::before, .previous-event .smb-balloon__body::after {
  display: none;
}
.previous-event .smb-balloon__figure {
  width: 100px;
  height: 100px;
}
.previous-event .smb-balloon__university {
  font-size: 0.875rem;
  font-weight: bold;
}
@media screen and (min-width: 1024px) {
  .previous-event .smb-balloon__university {
    font-size: 1rem;
  }
}
.previous-event .smb-balloon__voice {
  font-size: 1.125rem;
  font-weight: bold;
}
@media screen and (min-width: 1024px) {
  .previous-event .smb-balloon__voice {
    font-size: 1.375rem;
  }
}

.footer-logo {
  max-width: 130px;
}
@media screen and (min-width: 768px) {
  .footer-logo {
    max-width: 100%;
  }
}

.closed-message {
  position: fixed !important;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  text-align: center;
  background: linear-gradient(to right, #bf045b 0%, #d90479 23.96%, #6c51a6 49.48%, #079dd9 75.52%, #069cd9 100%);
}
.closed-message p {
  color: #fff;
  padding: 5px 0;
  font-weight: bold;
  font-size: 0.875rem;
}
@media screen and (min-width: 1024px) {
  .closed-message p {
    font-size: 1rem;
    padding: 10px 0;
  }
}

/* --------------------------
wordpressテーマスタイル上書き
-------------------------- */
.btn-blue-border {
  border: 1px solid #0C48C7;
  color: #0C48C7;
  border-radius: 50px;
  box-shadow: 4px 4px 0 rgba(34, 34, 34, 0.3019607843);
  font-weight: bold;
}

.btn-orange-border {
  border: 1px solid #FF7200;
  color: #FF7200;
  border-radius: 50px;
  box-shadow: 4px 4px 0 rgba(34, 34, 34, 0.3019607843);
  font-weight: bold;
}

.btn-black-border {
  border: 1px solid rgba(34, 34, 34, 0.3019607843);
  color: #fff;
  border-radius: 50px;
  box-shadow: 4px 4px 0 rgba(34, 34, 34, 0.1333333333);
  font-weight: bold;
}

.btn-blue-bg {
  background-color: #0C48C7;
  color: #fff;
  box-shadow: 4px 4px 0 rgba(34, 34, 34, 0.3);
  border-radius: 50px;
  font-weight: bold;
  padding: 15px 5px;
  width: 80%;
  text-align: center;
  display: inline-block;
  margin-top: 15px !important;
  text-decoration: none !important;
}
@media screen and (min-width: 1024px) {
  .btn-blue-bg {
    width: 270px;
  }
}

.btn-orange-bg {
  background-color: #FF7200;
  color: #fff;
  box-shadow: 4px 4px 0 rgba(34, 34, 34, 0.3);
  border-radius: 50px;
  font-weight: bold;
  padding: 15px 5px;
  width: 80%;
  text-align: center;
  display: inline-block;
  margin-top: 15px !important;
  text-decoration: none !important;
}
@media screen and (min-width: 1024px) {
  .btn-orange-bg {
    width: 270px;
  }
}

/* セクション見出し */
.smb-section__subtitle {
  font-size: 0.875em;
}
.smb-section__title {
  font-size: 3.125rem;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 900;
}
@media screen and (min-width: 1024px) {
  .smb-section__title {
    font-size: 5rem;
  }
}
.smb-section__title::after {
  display: none;
}

/* グローバルナビ */
@media screen and (min-width: 1024px) {
  .p-global-nav .c-navbar__item > a {
    font-size: 1rem !important;
  }
}

/* ドロワーメニュー */
.c-drawer {
  background-color: #FF7200 !important;
}
.c-drawer__item {
  text-align: left;
}
.c-drawer__item > a {
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/* ヘッダー */
.l-1row-header__branding {
  padding-top: 0;
  padding-bottom: 0;
}

.home .c-section {
  padding-top: 0;
}

.post-password-required {
  margin-top: 120px;
}

@media screen and (max-width: 600px) {
  .c-site-branding__title .custom-logo {
    width: 50px !important;
  }
}/*# sourceMappingURL=style.css.map */