@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Roboto:wght@400;500;700&display=swap');

:root{
  --roboto:'Roboto',"Noto Sans JP",sans-serif;
  }
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}
body{
  color: #595858;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
body.move{
  transition: .2s;
  opacity: 0;
}
body.stop{
  transition: .2s;
  opacity: 1;
}
.section-container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}
h2.section-title{
  font-family: var(--roboto);
  font-size: 48px;
  font-weight: bold;
  color: #e9a487;
  letter-spacing: 0.2em;
  text-align: center;
  margin: 0 0 60px;
}
img{
  max-width: 100%;
}
.sp{
  display: none;
}
.fadein{
  opacity: 0;
}
.fadein.is-active{
  animation: fadeInSlide 1s 0.4s ease-in-out forwards;
}
@keyframes fadeInSlide {
  0%{
    opacity: 0;
    transform: translateY(10px);
  }
  100%{
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scaleUp {
  0%{
    opacity: 0;
    transform: scale(0);
  }
  100%{
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeIn {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

/* ===== ヘッダー ====== */
#visumoday-header { 
  position: relative;
}
header{
  display: flex;
  align-items: center;
  padding: 27px 80px ;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
}
header.fixed{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: rgba(233,164,135,0.85);
  z-index: 4;
  transform: translateY(-100%);
  animation: slideIn 0.4s forwards;
}
@keyframes slideIn {
  0%{
    transform: translateY(-100%);
  }
  100%{
    transform: translateY(0);
  }
}
header.fixed .header-logo img{
  mix-blend-mode: color-dodge;
}
nav{
  margin-left: 70px;
}
.visumoday-nav__list{
  display: flex;
  align-items: center;
}
.visumoday-nav__list li:not(:last-child){
  margin-right: 50px;
}
.visumoday-nav__list a{
  font-size: 14px;
  font-weight: 500;
  color: #595858;
  letter-spacing: 0.1em;
}
header.fixed .visumoday-nav__list a{
  color: #fff;
}
header .header-logo { 
  width: 222px;
}


/* ===== ヒーローエリア ====== */
.bg-content01{
  position: relative;
  z-index: 1;
  background: url(/cms/visumo/img/visumo_day_2024/main_bg.png) no-repeat center / cover;
}
.hero-section{
  padding: 160px 0 74px;
  position: relative;
  width: 84vw;
  margin: 0 auto;
  max-width: 812px;
}
.hero-section__text{
  text-align: center;
  opacity: 0;
  animation: fadeInSlide 1s 0.8s ease-in-out forwards;
  margin: 0 -5px;
}
.hero-section__title{
  text-align: center;
  width: 0;
  margin: 28px 0 0;
  transition: 0.8s cubic-bezier(.13,.56,.29,.98);
  overflow: hidden;
}
.hero-section__title.is-show{
  width: 100%;
}
.hero-section__title img{
  max-width: inherit;
  width: 84vw;
  max-width: 812px;
}
.hero-section__sub-box {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  justify-content: center;
  margin: 50px auto 0;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 750px;
  width: 59vw;
}
.hero-section__date{
  opacity: 0;
  animation: fadeInSlide 1s 0.8s ease-in-out forwards;
}
.hero-section__online{
  width: 39%;
  max-width: 185px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInSlide 1s 0.8s ease-in-out forwards;
}
.apply-btn{
  position: absolute;
  right: 3%;
  bottom: 200px;
  z-index: 1;
  opacity: 0;
  transform: scale(0);
  animation: scaleUp 1s 0.8s ease-in-out forwards;
}
.fixed-btn{
  position: fixed;
  right: 70px;
  bottom: 30px;
  display: none;
  z-index: 2;
}
.apply-btn a,.fixed-btn a{
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  width: 200px;
  height: 200px;
  background: #595858;
  box-shadow: 0 4px 20px rgba(4,0,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 10px;
  transition: .4s;
}

.apply-btn a {
  width: 20vw;
  height: 20vw;
  max-width: 200px;
  max-height: 200px;
  font-size: clamp(18px, 2.32vw, 22px);
}
.apply-btn a:hover,.fixed-btn a:hover{
  text-decoration: none;
}
.apply-btn a:hover::after,.fixed-btn a:hover::after{
  transform: translateX(10px);
}
.apply-btn a::after,.fixed-btn a::after{
  content: url(/cms/visumo/img/visumo_day_2024/arrow.png);
  display: block;
  margin: 0 auto;
  line-height: 1;
  transition: .4s;
}
.hero-left-text {
  position: absolute;
  left: 2%;
  top: 43%;
  transform: translateY(-50%);
}

/* ===== company list ====== */
.company {
  padding: 0 0 60px;
}
.company__bg {
  background: rgba(255,255,255,0.75);
  max-width: 1000px;
  margin: 0 auto;
  padding: 17px 30px 22px;
  border-radius: 5px;
}
.company__ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 26px;
  margin: 0 0 12px;
}
.company__ttl::before,
.company__ttl::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #f7a17d;
}
.company__ttl .ttl-text {
  color: #f7a17d;
  font-size: 18px;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.company__list {
  display: flex;
  gap: 0 43px;
  padding: 0 20px;
}
.company__list .company__list_line01,
.company__list .company__list_line02 {
  display: flex;
  gap: 0 43px;
  align-items: center;
}

.company__list .logo-img-muji {
  max-width: 68px;
}
.company__list .logo-img-kewpie {
  max-width: 135px;
}
.company__list .logo-img-fujikko {
  max-width: 94px;
}
.company__list .logo-img-actus {
  max-width: 68px;
}
.company__list .logo-img-kate {
  max-width: 96px;
}
.company__list .logo-img-kanebo {
  max-width: 68px;
}
.company__list .logo-img-hinata {
  max-width: 109px;
}

/* ===== about ====== */
#about{
  padding: 50px 0 100px;
}
.flexbox{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about__description{
  width: 60%;
}
.about__img{
  width: 36%;
  padding-top: 40px;
}
.section-title__sub{
  font-family: var(--roboto);
  font-size: 20px;
  color: #e9a487;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin: 0 0 20px;
  display: block;
}
h1.section-title{
  font-size: 36px;
  font-weight: bold;
  margin: 0 0 30px;
  letter-spacing: 0.01em;
}
h1.section-title span{
  color: #e9a487;
}
p.read-text{
  font-size: 14px;
  line-height: 2.125;
  letter-spacing: 0.025em;
}
p.read-text .kerning{
  letter-spacing: -0.025em;
}

/* ===== session ====== */
.session-overview{
  position: relative;
  z-index: 2;
}
.bg-session.fixed{
  position: fixed;
  top: 80px;
}
.session--scroll {
  width: fit-content;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -90px;
}
.session--scroll .roboto {
  font-family: var(--roboto);
  letter-spacing: 0.2em;
  font-size: 14px;
  color: #e9a487;
  text-align: center;
}
.session--scroll .scroll--img {
  text-align: center;
  margin: 0 0 6px;
}
.session--scroll .scroll--img img {
  animation-name: allowInAnime;
  animation-duration: 2s;
  animation-iteration-count: infinite;

}
@keyframes allowInAnime{
  0% {
      transform: translateY(-10px);
  }
  50% {
      transform: translateY(0);
  }
  100% {
      transform: translateY(-10px);
  }
}

.session{
  position: relative;
  z-index: 1;
  padding: 60px 0 120px;
  background: #fff4ec url(/cms/visumo/img/visumo_day_2024/session_bg.png) no-repeat top center;
  max-width: 1390px;
  margin: 0 auto 100px;
  border-radius: 50px;
}
#session h2.section-title{
  color: #e9a487;
  margin-bottom: 60px;
  top: 100px;
}
#session h2.section-title.bgWhite{
  color: #e9a487;
}
.session-card li{
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 30px rgba(183,136,116,0.25);
  margin-bottom: 60px;
  top: 180px;
  transform-origin: center top;
  padding: 40px;
  display: flex;
  justify-content: space-between;
}
.session-card li:last-child {
  margin-bottom: 0;
}
.session-card__left{
  width: 64.13%;
}
.session-card__left .time{
  font-size: 24px;
  font-weight: 500;
  color: #e9a487;
  letter-spacing: 0.05em;
}
.session-card__left .label{
  font-family: var(--roboto);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  background: #e9a487;
  width: 160px;
  border-radius: 0 5px 5px 0;
  padding: 4px 8px;
  letter-spacing: 0.2em;
}
.session-card__left .time-label {
  display: flex; align-items: center;
  margin-left: -40px;
  gap: 0 18px;
}
h3.section-title{
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 20px 0 10px;
}
.session-card__description .read-text{
  letter-spacing: 0;
}
.session-card__right{
  width: 36.95%;
}
.session-card__img {
  text-align: right;
}
.session-card__speaker{
  display: flex;
  align-items: flex-end;
  border-bottom: 2px solid #e9a487;
  padding-bottom: 10px;
  width: 100%;
}
.session-card__speaker-right{
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.session-card__speaker-title{
  font-family: var(--roboto);
  font-size: 14px;
  color: #e9a487;
  letter-spacing: 0.2em;
}
.session-card__speaker-description{
  font-size: 14px;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.session-card__speaker-description .company-department {
  font-size: 11px;
  display: block;
  line-height: 1.2;
  margin: 5px 0;
}
.session-card__speaker-description .company-staff-name {
  margin-top: auto;
}
.session-card__speaker-left{
  position: relative;
  opacity: 0;
  margin-right: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.session-card__item.is-active .session-card__speaker-left{
  animation: fadeIn 1s forwards;
}
.session-card__speaker-left span{
  position: relative;
  z-index: 1;
}
.session-card__speaker-box {
  margin: 20px 0 0;
  display: flex;
  gap: 0 10px;
}
.session-card__speaker-website-link {
  position: absolute;
  right: 0;
  bottom: 0;
}
.session-card__speaker-website-link .link-btn {
  color: #e9a487;
  font-size: 12px;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #e9a487;
  border-radius: 3px;
  width: 90px;
  height: 19px;
  line-height: 1;
  padding: 0 0 2px;
  gap: 0 2px;
  transition: all 0.2s;
}
.session-card__speaker-website-link .link-btn:hover {
  text-decoration: none;
  color: #fff;
  background-color: #e9a487;
}
.session-card__speaker-website-link .link-btn:hover .icon img {
  mix-blend-mode: color-dodge;
}

.scroll{
  font-family: var(--roboto);
  font-size: 14px;
  font-weight: bold;
  color: #e9a487;
  text-align: center;
  letter-spacing: 0.2em;
  margin: 30px 0 0;
}
.scroll::before{
  content:url(/cms/visumo/img/visumo_day_2024/arrow_down.png);
  display: block;
  margin: 0 auto;
}

/* ===== overview ====== */
.overview{
  padding: 100px 0 50px;
  position: relative;
  z-index: 1;
}
.bg-overview {
  background: url(/cms/visumo/img/visumo_day_2024/overview_bg.png) no-repeat top center / cover;
}
.overview h2.section-title {
  color: #fff;
}
.overview__frame dl{
  display: flex;
}
.overview__frame dl:not(:first-child){
  margin-top: 10px;
}
.overview__frame dl dt{
  font-size: 16px;
  font-weight: 500;
  background: #f5f5f5;
  border-radius: 8px 0 0 8px;
  width: 190px;
  padding: 14px 10px 14px 28px;
}
.overview__frame dl dd{
  width: 100%;
  flex: 1;
  background: #fff;
  border-radius: 0 8px 8px 0;
  padding: 14px 10px 14px 28px;
}
.time-list{
  padding: 6px 0;
}
.time-list li:not(:first-child){
  margin-top: 10px;
}
.time-list .time{
  margin-right: 16px;
}

/* ===== 注意事項 ====== */
.notes{
  font-size: 12px;
  padding-bottom: 130px;
  letter-spacing: 0.05em;
}
.notes h2{
  font-weight: bold;
  margin-bottom: 8px;
}
.notes h2:not(:first-of-type){
  margin-top: 30px;
}
.notes li{
  line-height: 1.4;
  margin-bottom: 6px;
}
.notes a{
  color: #595858;
  text-decoration: underline;
}
.notes a:hover{
  text-decoration: none;
}
.notes-list li{
  text-indent: -1em;
  padding-left: 1em;
}

/* ===== フッター ====== */
footer{
  border-top: 1px solid #e9a487;
  text-align: center;
  padding: 90px 0 80px;
}
.footer__copyright{
  font-size: 11px;
  color: #595858;
  margin: 30px 0 0;
}

@media screen and (max-width: 767px) {
  body{
    font-size: 12px;
  }
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
  h2.section-title{
    font-size: 24px;
    margin: 0 0 30px;
  }
  .fadein_sp{
    opacity: 0;
  }
  .fadein_sp.is-active{
    animation: fadeInSlide 1s 0.4s ease-in-out forwards;
  }
  /* ===== ヘッダー ====== */
  header{
    display: flex;
    align-items: center;
    padding: 20px 60px ;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  nav{
    margin-left: 0;
  }
  .visumoday-nav .fixed_menu__button{
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 5;
    width: 30px;
    height: 20px;
  }
  .visumoday-nav .fixed_menu__button span{
    position: absolute;
    left: 0;
    display: block;
    width: 30px;
    height: 2px;
    transition: all .3s;
    background: #595858;
  }
  header.fixed .visumoday-nav .fixed_menu__button span{
    background: #fff;
  }
  .visumoday-nav .fixed_menu__button span:nth-of-type(1) {
    top: 0;
  }
  .visumoday-nav .fixed_menu__button span:nth-of-type(2) {
    top: 50%;
  }
  .visumoday-nav .fixed_menu__button span:nth-of-type(3) {
    top: 100%;
  }
  .visumoday-nav .fixed_menu__button.is-open span:nth-of-type(1) {
    animation: active-menu-bar01 0.8s forwards;
  }
  .visumoday-nav .fixed_menu__button.is-open span:nth-of-type(2) {
    opacity: 0;
  }
  .visumoday-nav .fixed_menu__button.is-open span:nth-of-type(3) {
    animation: active-menu-bar03 0.8s forwards;
  }
  .visumoday-nav .fixed_menu__button.is-closed span:nth-of-type(1) {
    animation: menu-bar01 0.8s forwards;
  }
  .visumoday-nav .fixed_menu__button.is-closed span:nth-of-type(2) {
    transition: all 0.25s 0.25s;
  }
  .visumoday-nav .fixed_menu__button.is-closed span:nth-of-type(3) {
    animation: menu-bar03 0.8s forwards;
  }
  @keyframes menu-bar01 {
    0% {
      top: 50%;
      transform:rotate(45deg);
    }
    50% {
      top: 50%;
      transform:rotate(0);
    }
    100% {
      top: 0;
      transform:rotate(0);
    }
  }
  @keyframes menu-bar03 {
    0% {
      top: 50%;
      transform: rotate(-45deg);
    }
    50% {
      top: 50%;
      transform: rotate(0);
    }
    100% {
      top: 100%;
      transform: rotate(0);
    }
  }
  @keyframes active-menu-bar01 {
    0% {
      top: 0;
      transform:rotate(0);
    }
    50% {
      top: 50%;
      transform:rotate(0);
    }
    100% {
      top: 50%;
      transform:rotate(45deg);
    }
  }
  @keyframes active-menu-bar03 {
    0% {
      top: 100%;
      transform: rotate(0);
    }
    50% {
      top: 50%;
      transform: rotate(0);
    }
    100% {
      top: 50%;
      transform: rotate(-45deg);
    }
  }
  .visumoday-nav .fixed_nav{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(233,164,135,0.9);
    padding: 80px 40px;
    z-index: 3;
  }
  .visumoday-nav__list{
    display: block;
  }
  .visumoday-nav__list li:not(:last-child){
    margin-right: 0;
  }
  .visumoday-nav__list a{
    color: #fff;
    border-bottom: 1px solid #fff;
    display: block;
    padding: 16px 0;
  }

  /* ===== ヒーローエリア ====== */
  .hero-left-text {
    display: none;
  }
  .hero-area .section-container{
    padding: 0;
    position: relative;
  }
  .bg-content01{
    z-index: 2;
    overflow: hidden;
    padding-top: 60px;
  }
  .bg-content01{
    position: relative;
    z-index: 1;
    background: url(/cms/visumo/img/visumo_day_2024/main_bg_sp.png) no-repeat center / cover;
  }
  .hero-section{
    padding: 20px 40px 5.33vw;
    width: 100%;
  }
  .hero-section__text{
    position: relative;
    z-index: 1;
    margin: 0;
  }
  .hero-section__title{
    margin: 10px 0 0;
    position: relative;
    z-index: 1;
  }
  .hero-section__title img{
    width: calc(100vw - 80px);
  }
  .hero-section__sub-box {
    margin: 30px 0 0;
    display: block;
    width: 41.6vw;
  }
  .hero-section__date{
    position: relative;
    z-index: 1;
  }
  .hero-section__online{
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 15px 0 0;
    max-width: none;
  }
  .apply-btn{
    position: absolute;
    right: 7%;
    bottom: 18px;
  }
  .fixed-btn{
    position: fixed;
    right: 0;
    bottom: 0;
    width: 100%;
  }
  .apply-btn a{
    font-size: clamp( 10px , 4vw, 30px);
    width: 33.33vw;
    height: 33.33vw;
    padding-top: 0;
    transition: none;
    max-width: 250px;
    max-height: 250px;
    
  }
  .apply-btn a::after{
    content: "";
    background: url(/cms/visumo/img/visumo_day_2024/arrow_sp.png) top right no-repeat;
    background-size: contain;
    margin-top: 4px;
    width: 8vw;
    height: 4vw;
    max-width: 60px;
    max-height: 30px;
  }
  .fixed-btn a{
    font-size: 15px;
    width: 100%;
    height: 50px;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    letter-spacing: 0.1em;
    padding: 0;
  }
  .fixed-btn a br{
    display: none;
  }
  .fixed-btn a::after{
    content: "";
    position: absolute;
    background: url(/cms/visumo/img/visumo_day_2024/arrow.png) top right no-repeat;
    background-size: contain;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    width: 20px;
    height: 8px;
    margin-top: 0;
  }

  header .header-logo { 
    width: 69.60%;
    margin: 0 auto;
  }


  /* ===== company list ====== */
  .company {
    padding: 0 0 20px;
  }
  .company__bg {
    flex-direction: column;
    width: 88%;
    margin: 0 auto;
    padding: 13px;
  }
  .company__ttl {
    margin: 0 0 10px;
  }
  .company__ttl .ttl-text {
    font-size: 11px;
  }
  .company__list {
    padding: 0;
    gap: 7px 15px;
    width: 100%;
    justify-content: center;
    flex-direction: column;
  }
  .company__list .company__list_line01,
  .company__list .company__list_line02 {
    gap: 0 25px;
  }
  .company__list .company__list_line01 {
    justify-content: center;

  }
  .company__list .company__list_line02 {
    justify-content: space-between;
  }
  .company__list .logo-img-muji {
    width: 9.06vw;
  }
  .company__list .logo-img-kewpie {
    width: 18vw;
  }
  .company__list .logo-img-fujikko {
    width: 16.8vw;
  }
  .company__list .logo-img-actus {
    width: 12.13vw;
  }
  .company__list .logo-img-kate {
    width: 17.06vw;
  }
  .company__list .logo-img-kanebo {
    width: 12.13vw;
  }
  .company__list .logo-img-hinata {
    width: 19.2vw;
  }

  /* .company__list .slide-contents {
    padding-left: 20px;
    gap: 0 30px;
    width: 190vw;
  }
  .company__list .slide-contents > li {
    flex-shrink: 1;
  } */

  /* ===== about ====== */
  #about{
    padding: 40px 0 0;
    margin: 0 25px;
  }
  .about__description{
    width: 100%;
  }
  .about__img{
    width: 78%;
    padding-top: 26px;
    margin: 0 auto;
  }
  .section-title__sub{
    font-size: 11px;
    margin: 0 0 10px;
  }
  h1.section-title{
    font-size: 19px;
    font-weight: bold;
    margin: 0 0 20px;
  }
  p.read-text{
    font-size: 12px;
    line-height: 1.83;
  }

  /* ===== session ====== */
  .session-overview{
    position: relative;
    overflow: hidden;
    padding-top: 60px;
  }
  .session{
    position: relative;
    z-index: 1;
    padding: 40px 0;
    width: 94.66%;
    margin: 0 auto 50px;
    border-radius: 25px;
  }
  .session .section-container{ 
    width: 91.54%;
    padding: 0;
    margin: 0 auto;
  }
  #session h2.section-title{
    position: static;
    margin-bottom: 35px;
  }
  .session-card li{
    border: 1px solid #e9a487;
    padding: 16px 20px 20px;
    flex-wrap: wrap;
    position: static;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  .session-card__left{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .session-card__left .time{
    font-size: 16px;
  }
  .session-card__left .label{
    font-size: 10px;
    width: 110px;
    margin: 0;
  }
  h3.section-title{
    font-size: 16px;
    margin: 16px 0 10px;
  }
  .session-card__description {
    margin: 0 0 15px;
  }
  .session-card__description .read-text{
    letter-spacing: 0;
  }
  .session-card__right{
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
  }
  .session-card__speaker-box {
    margin: 0 0 15px;
    width: 100%;
    gap: 0 5px;
  }
  .session-card__speaker{
    margin-top: 0;
    position: relative;
    border-left: 2px solid #e9a487;
    border-bottom: none;
    padding: 0;
    transform: none !important;
    align-items: flex-start;
  }
  .session-card__speaker-left{
    display: none;
  }
  .session-card__speaker-title {
    font-size: 12px;
  }
  .session-card__speaker-description{
    font-size: 10px;
    border-bottom: 0;
    margin: 5px 0 0;
    padding: 0;
  }
  .session-card__speaker-right{
    width: 100%;
    padding-top: 0;
    opacity: 1;
    padding-left: 10px;
    line-height: 1;
  }
  .session-card__img{
    width: 100%;
    text-align: center;
  }
  .session--scroll{
    display: none;
  }
  .session-card__left .time-label {
    margin-left: -20px;
  }
  .session-card__speaker-description .company-name {
    font-size: 11px;
    display: block;
  }
  .session-card__speaker-description .company-department {
    font-size: 10px;
    display: inline-block;
    margin-right: 1em;
  }
  .session-card__speaker-description .company-staff-name {
    display: block;
    font-size: 11px;
  }
  .session-card__speaker-website-link .link-btn {
    font-size: 10px;
    height: 17px;
    width: 85px;
  }
  .session-card__speaker-website-link .link-btn .icon {
    width: 9px;
  }

  /* ===== overview ====== */
  .overview{
    padding: 60px 0 40px;
    position: relative;
    z-index: 1;
  }
  .overview .section-container{
    width: 86.66%;
    margin: 0 auto;
    padding: 0;
  }
  .overview__frame dl:not(:first-child){
    margin-top: 10px;
  }
  .overview__frame dl dt{
    font-size: 12px;
    width: 100px;
    padding: 10px 14px;
    line-height: 2;
  }
  .overview__frame dl dd{
    font-size: 12px;
    padding: 10px 0px 10px 7px;
    line-height: 2;
  }
  .time-list{
    padding: 6px 0;
  }
  .time-list li:not(:first-child){
    margin-top: 4px;
  }
  .time-list .time{
    margin-right: 10px;
    
  }

  /* ===== 注意事項 ====== */
  .notes{
    font-size: 10px;
    padding-bottom: 60px;
  }
  .notes .section-container{
    padding: 0 25px;
  }
  .notes h2:not(:first-of-type){
    margin-top: 20px;
  }
  .notes li{
    line-height: 1.6;
  }

  /* ===== フッター ====== */
  footer{
    padding: 30px 0 70px;
  }
  footer picture img{
    width: 40%;
  }
  .footer__copyright{
    margin: 20px 0 0;
  }
}