@charset "UTF-8";

/*-------------------------------------------
全体
-------------------------------------------*/
body {
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

.wrapper {
  max-width: 780px;
  width: 100%;
}

a:hover {
  opacity: 0.7;
}



/*-------------------------------------------
改行
-------------------------------------------*/
.pc-br {
  display: block;
}

.sp-br {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc-br {
    display: none;
  }

  .sp-br {
    display: inline-block;
  }
}

/*-------------------------------------------
Header
-------------------------------------------*/
.header {
  width: 100%;
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 1000;
}

.header-wrapper {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.header-left {
  display: flex;
  align-items: center;
  column-gap: 64px;
}

.header-logo-ootsuka {
  width: 196px;
  object-fit: cover;
}

.header-logo-autodesk {
  width: 190px;
  object-fit: cover;
}

.header-nav {
  height: 100%;
}

.nav-list {
  height: 100%;
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.nav-list__item {
  font-size: 12px;
  font-weight: 500;
}

.btn-offer {
  color: #faff35;
  font-weight: 900;
  background-color: #000;
  padding: 8px 34px 9.5px 24px;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
}

.btn-offer::after {
  content: "";
  display: block;
  position: absolute;
  top: 51%;
  right: 20px;
  transform: translateY(-50%);
  width: 7px;
  height: 12px;
  background-image: url(../images/Vector\ 9.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.btn-offer:hover {
  color: #000;
  background-color: #faff35;
  transition: all 0.3s ease;
}

.btn-offer:hover::after {
  background-image: url(../images/arrow-black.png);
  transition: 0.3 all ease;
}

.nav-list__item a {
  display: inline-block;
  width: 100%;
}

.hbg__menu {
  display: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  transition: all 0.5s;
  z-index: 1000;
}

.hbg__menu span {
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: #33363f;
  border-radius: 4px;
  position: absolute;
  transition: 0.3s ease-in-out;
  left: 50%;
  transform: translateX(-50%);
}

.hbg__menu span:nth-child(1) {
  top: 8px;
}

.hbg__menu span:nth-child(2) {
  top: 18px;
}

.hbg__menu span:nth-child(3) {
  bottom: 6px;
}

.open .hbg__menu span:nth-child(1) {
  width: 34px;
  background-color: #fff;
  transform: translate(-17px, 10px) rotate(45deg);
}

.open .hbg__menu span:nth-child(2) {
  opacity: 0;
}

.open .hbg__menu span:nth-child(3) {
  width: 34px;
  background-color: #fff;
  transform: translate(-17px, -9px) rotate(-45deg);
}

.sp-header-nav {
  display: none;
  width: 100%;
  height: 100vh;
  z-index: 100;
  pointer-events: none;
}

.sp-nav-list {
  width: 100%;
  height: 100vh;
  font-size: 20px;
  color: #fff;
  padding: 0 20px;
  background-color: #000;
  position: fixed;
  top: 0px;
  left: -500%;
  z-index: 9900;
  opacity: 1;
  padding-top: 50px;
  transition: all 0.5s;
}

.sp-nav-list .menu__ttl {
  display: inline-block;
  font-size: 30px;
  padding: 4px 10px;
  margin-bottom: 40px;
  border: 2px solid #fff;
}

.open .sp-nav-list {
  left: 0;
  opacity: 1;
  transition: all 0.5s;
}

.open .sp-header-nav {
  display: block;
  pointer-events: auto;
}

.sp-nav-list__item {
  color: #ffffff;
  font-size: 14px;
  padding: 20px 0;
  border-bottom: 1px solid #ffffff;
  position: relative;
  margin-bottom: 20px;
}

.sp-nav-list__item:last-child {
  margin-bottom: 0;
}

.sp-nav-list__item a {
  display: block;
  width: 100%;
}

.sp-nav-list__item::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 8px;
  height: 14px;
  background-image: url(../images/arrow-white.png);
  background-size: cover;
}

.sp-nav-list__item.sp-btn-offer {
  color: #000;
  font-size: 16px;
  font-weight: 900;
  background-color: #faff35;
  border-bottom: none;
  padding: 21px 130px 21px 100px;
  width: 300px;
  height: 60px;
  border-radius: 8px;
  margin: 0 auto;
  margin-top: 44px;
  position: relative;
  transition: all 0.3s ease;
}

.sp-nav-list__item.sp-btn-offer:hover {
  color: #faff35;
  background-color: #000;
  border: 2px solid #faff35;
  padding: 19px 130px 20px 100px;
}

.sp-nav-list__item.sp-btn-offer::after {
  content: "";
  display: block;
  position: absolute;
  top: 51%;
  right: 100px;
  transform: translateY(-50%);
  width: 8px;
  height: 14px;
  background-image: url(../images/arrow-black.png);
  background-size: cover;
}

.sp-nav-list__item.sp-btn-offer:hover::after {
  background-image: url(../images/arrow-yellow.svg);
}

@media screen and (max-width: 960px) {
  .header-right {
    display: none;
  }

  .header-nav {
    display: none;
  }

  .hbg__menu {
    display: block;
  }

  .sp-header-nav {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .header {
    height: 56px;
  }

  .header-wrapper {
    max-width: initial;
    width: 100%;
    padding: 0 10px;
  }

  .header-left {
    column-gap: 44px;
  }

  .header-logo-ootsuka {
    width: 114px;
  }

  .header-logo-autodesk {
    width: 118px;
  }

  .hbg__menu {
    right: 20px;
  }

  .sp-nav-list {
    padding-top: 61px;
  }

  .sp-nav-list__item {
    margin-bottom: 7px;
  }
}

/*-------------------------------------------
KV
-------------------------------------------*/
.kv {
  height: 500px;
  background-image: url(../images/bg-image.jpg);
  background-size: cover;
  padding-top: 30px;
  margin-top: 72px;
}

.kv-wrapper {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.kv-text-box {
  width: 690px;
  height: 441px;
  padding: 16px;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.65);
  border-radius: 16px;
}

.kv-text-row_01 {
  color: #faff35;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.kv-text-row_02 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.line {
  width: 100%;
  height: 2px;
  background-color: #fff;
  margin: 12px 0;
}

.kv-text-row_03 {
  width: 333px;
  height: 36px;
  font-size: 20px;
  font-weight: 900;
  background-color: #faff35;
  color: #000000;
  padding: 6px 16px 8px;
  border-radius: 8px;
  margin-bottom: 8px;
}

.kv-text-row_04 {
  width: 590px;
  height: 50px;
  display: flex;
  align-items: center;
  font-size: 30px;
  font-weight: 700;
  padding-left: 66px;
  position: relative;
  margin-bottom: 9px;
}

.kv-text-row_04::before {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  background-image: url(../images/calendar.png);
  background-size: cover;
  top: 0;
  left: 0;
}

.kv-text-row_05 {
  width: 590px;
  height: 50px;
  display: flex;
  align-items: center;
  font-size: 30px;
  font-weight: 700;
  padding-left: 64px;
  position: relative;
  margin-bottom: 4px;
}

.kv-text-row_05::before {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  background-image: url(../images/map.png);
  background-size: cover;
  top: 0;
  left: 0;
}

.kv-text-row_06 {
  width: 100%;
  height: 34px;
}

.kv-text-row_06 dl {
  display: flex;
  align-items: center;
}

.row_06-label {
  width: 99px;
  height: 34px;
  padding: 6px 14px 8px;
  font-size: 16px;
  font-weight: 700;
  border: 2px solid #fff;
  border-radius: 51px;
  text-align: center;
  margin-right: 16px;
}

.row_06-value {
  font-size: 20px;
  font-weight: 700;
}

.row_06-value:nth-child(2) {
  margin-right: 40px;
}

@media screen and (max-width: 768px) {
  .kv {
    height: 384px;
    background-image: none;
    background-color: #000;
    padding-top: 52px;
    margin-top: 56px;
  }

  .kv-wrapper {
    max-width: initial;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
  }

  .kv-text-box {
    width: 323px;
    height: 280px;
    background-color: #000;
    margin: 0 auto;
    padding: 0;
    border-radius: 0px;
  }

  .kv-text-row_01 {
    font-size: 16px;
    letter-spacing: -0.045em;
    margin-bottom: 6px;
  }

  .kv-text-row_02 {
    font-size: 28px;
    line-height: 1.2;
  }

  .line {
    margin: 9px 0;
  }

  .kv-text-row_03 {
    width: 225px;
    height: 22px;
    font-size: 14px;
    border-radius: 4px;
    padding: 3px 8px 4px;
  }

  .kv-text-row_04 {
    width: 315px;
    height: 28px;
    font-size: 16px;
    padding-left: 36px;
  }

  .kv-text-row_04::before {
    width: 27px;
    height: 22px;
  }

  .kv-text-row_05 {
    width: 315px;
    height: 28px;
    font-size: 16px;
    padding-left: 36px;
    margin-bottom: 16px;
  }

  .kv-text-row_05::before {
    width: 24px;
    height: 25px;
  }

  .kv-text-row_06 dl {
    flex-wrap: wrap;
    row-gap: 8px;
  }

  .row_06-label {
    width: 80px;
    height: 24px;
    font-size: 12px;
    padding: 3.5px 9px;
  }

  .row_06-value {
    font-size: 12px;
    width: 150px;
  }
}

/*-------------------------------------------
概要
-------------------------------------------*/
.outline {
  min-height: 466px;
  background-image: url(../images/bg-outline.jpg);
  background-size: cover;
  padding: 40px 0 45px;
}

.outline .wrapper {
  margin: 0 auto;
}

.outline-header {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 33px;
}

.outline-sub-header {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.outline-des {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 28px;
}

.recommend-box {
  color: #fff;
  padding: 20px 20px 16px;
  background-color: #000;
  border-radius: 6px;
}

.recommend-title {
  color: #faff35;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 19px;
  padding-left: 50px;
  position: relative;
}

.recommend-title::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  width: 36px;
  height: 27px;
  background-image: url(../images/icon-hand.png);
  background-size: cover;
}

.recommend-list__item {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.65;
  padding-left: 30px;
  position: relative;
}

.recommend-list__item::before {
  content: "・";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
}

/* 追加申し込みボタン */
.top-cta-box {
  /* text-align: center; */
  display: flex;
  justify-content: center;
}


.btn-top-cta {
  display: inline-block;
  width: 280px;
  height: 48px;
  line-height: 48px;
  color: #faff35;
  font-size: 19px;
  font-weight: 900;
  background-color: #000;
  padding: 0px 0px 0px 86px;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: 28px;
}

.btn-top-cta::after {
  content: "";
  display: block;
  position: absolute;
  top: 53%;
  right: 90px;
  transform: translateY(-50%);
  width: 7px;
  height: 12px;
  background-image: url(../images/Vector\ 9.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.btn-top-cta:hover {
  color: #000;
  background-color: #faff35;
  transition: all 0.3s ease;
}

.btn-top-cta:hover::after {
  background-image: url(../images/arrow-black.png);
  transition: 0.3 all ease;
}


@media screen and (max-width: 768px) {
  .outline {
    background-position: 0px -160px;
    padding: 30px 16px;
    line-height: 1.5;
  }

  .outline-header {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .outline-sub-header {
    font-size: 18px;
    letter-spacing: 0em;
    margin-bottom: 20px;
  }

  .outline-des {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .recommend-title {
    font-size: 20px;
    margin-bottom: 19px;
    padding-left: 16px;
  }

  .recommend-list__item {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.65;
    margin-bottom: 6px;
    padding-left: 20px;
  }

  .recommend-box {
    padding: 15px 0 16px;
  }

  .recommend-list {
    padding-left: 17px;
    padding-right: 16px;
  }

  .recommend-title::before {
    content: none;
  }


  /* 追加申し込みボタン */
  .btn-top-cta {
    width: 240px;
    height: 40px;
    line-height: 40px;
    margin-bottom: 18px;
    padding: 0px 0px 0px 70px;
  }

  .btn-top-cta::after {
    right: 70px;
  }
}

/*-------------------------------------------
プログラム
-------------------------------------------*/
.program-am {
  background-color: #d9d9d9;
  padding: 40px 0;
}

.wrapper {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
}

.program-header {
  font-size: 32px;
  font-weight: 700;
  margin-top: 7px;
  margin-bottom: 40px;
  letter-spacing: -0.07em;
}

.time-table {
  display: flex;
  height: 56px;
  line-height: 56px;
  margin-bottom: 24px;
}

.program-sche {
  width: 164px;
  background-color: #faff35;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.045em;
  text-align: center;
}

.program-title {
  color: #fff;
  background-color: #000;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.045em;
  flex: 1;
  padding-left: 16px;
}

.program-section-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.045em;
  margin-bottom: 40px;
}

.program-section-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 24px;
}

.program-block {
  background-color: #fff;
  padding: 14px 16px 0px;
}

.program-block-01 {
  min-height: 278px;
  margin-bottom: 20px;
}

.program-block-02 {
  min-height: 1117px;
  padding: 16px 16px 0px;
}

.program-block-title {
  width: 204px;
  text-align: center;
  border: 1px solid #000;
  padding: 5px 0;
  margin-bottom: 18px;
}

.program-block-02 .program-block-title {
  margin-bottom: 24px;
}

.block-01-left {
  margin-bottom: 16px;
}

.block-01-left-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.045em;
}

.block-01-right {
  display: flex;
  column-gap: 16px;
}

.program-speaker-block {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.block-01-right .program-speaker-block {
  width: 308px;
}

.program-speaker-thum {
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background-color: #b1b1b1;
  margin-right: 14px;
}

.program-speaker-profile {
  font-size: 18px;
}

.program-speaker-company {
  font-size: 12px;
  margin-bottom: 6px;
  letter-spacing: -0.045em;
  line-height: 1.5;
}

.program-speaker-name {
  font-size: 18px;
}

.program-block-02 {
  padding-bottom: 24px;
}

.program-block-02-sec-01 {
  display: flex;
  justify-content: space-between;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px dotted #000;
}

.program-block-02-sec-01-left {
  width: 400px;
}

.block-02-session-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.045em;
}

.program-block-02-sec-01-right {
  width: 308px;
}

.program-block-02-sec-02 {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px dotted #000;
}

.block-02-session-title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.045em;
  padding-top: 8px;
  margin-bottom: 14px;
}

.program-block-02-sec-02 .block-02-session-title {
  letter-spacing: 0em;
  margin-bottom: 24px;
}

.program-block-02-sec-02 ul {
  margin-top: 16px;
  margin-bottom: 33px;
}

.program-block-02-sec-02 ul li {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10.5px;
  padding-left: 1em;
  position: relative;
}

.program-block-02-sec-02 ul li::before {
  content: "・";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.autodesk-speaker-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 24px;
}

.program-block-02-sec-02 .program-speaker-block {
  width: 238px;
}

.program-block-02-sec-02 .program-speaker-thum {
  margin-right: 8px;
}

.program-block-02-sec-02 .plusbadge {
  width: 248px;
}

.plusbadge .program-speaker-profile {
  align-self: flex-start;
}

.speaker-badge {
  font-size: 14px;
  letter-spacing: -0.045em;
  color: #faff35;
  background-color: #000;
  width: 98px;
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 7px;
}

.plusbadge .program-speaker-company {
  font-size: 16px;
  line-height: 1.3;
}

.plusbadge .program-speaker-company span {
  font-size: 12px;
}

.program-block-02-sec-03 {
  width: 100%;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px dotted #000;
}

.program-block-02-sec-03 .program-block-title {
  width: 385px;
  letter-spacing: -0.045em;
  margin-bottom: 22px;
}

.program-block-02-sec-03-text {
  font-size: 16px;
  letter-spacing: -0.045em;
  margin-bottom: 24px;
}

.block-02-sec-03-speaker-box {
  display: flex;
  justify-content: space-between;
}

.block-02-sec-03-speaker-box .program-speaker-block {
  width: 240px;
}

.block-02-sec-03-speaker-box .program-speaker-profile {
  width: 128px;
}

.block-02-sec-03-speaker-box .program-speaker-block .program-speaker-thum {
  margin-right: 7px;
}

.program-block-02-sec-04 {
  padding-top: 5px;
}

/*-------------------------------------------
プログラム　午後
-------------------------------------------*/
.program-pm {
  background-color: #fff;
  padding: 48px 0 48px;
}

.program-pm .program-sche {
  width: 132px;
}

.program-pm .time-table {
  margin-bottom: 35px;
}

.program-pm .program-section-desc {
  letter-spacing: -0.045em;
  line-height: 1.55;
}

.time-table-header {
  color: #fff;
  background-color: #000;
  font-size: 24px;
  font-weight: 700;
  height: 56px;
  line-height: 56px;
  padding-left: 16px;
  margin-bottom: 24px;
  letter-spacing: -0.045em;
}

.time-table-image {
  width: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .program-am {
    padding: 24px 16px;
  }

  .program-pm {
    padding: 27px 16px 24px;
  }

  .program-header {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 20px;
  }

  .time-table {
    display: flex;
    height: 40px;
    line-height: 40px;
    margin-bottom: 27px;
  }

  .program-sche {
    width: 112px;
    font-size: 16px;
  }

  .program-title {
    font-size: 16px;
  }

  .program-section-title {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .program-section-desc {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .block-contents-wrapper {
    flex-direction: column;
  }

  .program-block-01 {
    padding: 12px 16px 15px;
    min-height: initial;
    margin-bottom: 20px;
  }

  .program-block-title {
    max-width: 311px;
    width: 100%;
    text-align: center;
    border: 1px solid #000;
    padding: 5px 0;
    margin: 0 auto 18px;
  }

  .block-01-left {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 24px;
  }

  .block-01-left-text {
    font-size: 14px;
  }

  .time-table-header {
    font-size: 16px;
    font-weight: 700;
    height: 40px;
    line-height: 40px;
    padding-left: 8px;
    margin-bottom: 24px;
  }

  .program-block-01 .program-speaker-thum {
    margin-bottom: 15px;
  }

  .program-block-02-sec-01 {
    flex-direction: column;
    padding-bottom: 15px;
  }

  .program-block-02-sec-01-left {
    width: 100%;
  }

  .block-02-session-desc {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .block-02-session-title {
    font-size: 16px;
    letter-spacing: 0em;
    margin-bottom: 20px;
    padding-top: 0;
  }

  .program-block-02-sec-01-right .program-speaker-block {
    flex-direction: row;
  }

  .program-block-02-sec-01-right .program-speaker-profile {
    align-self: center;
  }

  .program-block-02-sec-02 .program-speaker-block {
    width: 48%;
  }

  .program-block-02-sec-03 .program-block-title {
    width: 100%;
    line-height: 1.35;
    margin-bottom: 20px;
  }

  .block-02-sec-03-speaker-box {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
  }

  .block-02-sec-03-speaker-box .program-speaker-block {
    width: 148px;
  }

  .block-02-sec-03-speaker-box .program-speaker-profile {
    width: 148px;
  }

  .program-block-02-sec-02 ul {
    margin-bottom: 23px;
  }

  .program-block-02-sec-02 ul li {
    margin-bottom: 6px;
  }

  .program-block-02-sec-02 .program-speaker-thum {
    margin-bottom: 13px;
  }

  .autodesk-speaker-box {
    row-gap: 16px;
  }

  .program-speaker-block {
    align-items: flex-start;
    flex-wrap: nowrap;
    flex-direction: column;
  }

  .autodesk-speaker-box .program-speaker-thum {
    align-self: flex-start;
  }

  .autodesk-speaker-box .program-speaker-profile {
    align-self: flex-start;
  }


  .sec-02-speaker-03 .program-speaker-thum {
    align-self: flex-start;
  }

  .sec-02-speaker-03 .program-speaker-profile {
    align-self: flex-start;
    /* margin-top: -28px; */
  }

  .program-block-02-sec-02 {
    padding-bottom: 20px;
    margin-bottom: 17px;
  }

  .program-block-02-sec-03-text {
    font-size: 14px;
    margin-bottom: 31px;
  }

  .block-02-sec-03-speaker-box .program-speaker-thum {
    height: 98px;
    margin-right: 0;
    align-self: flex-start;
    margin-bottom: 14px;
  }

  .program-block-02-sec-03 {
    padding-bottom: 13px;
    margin-bottom: 14px;
  }

  .program-pm .program-sche {
    width: 86px;
  }

  .program-pm .program-title {
    font-size: 16px;
    padding-left: 9px;
  }

  .program-pm .time-table {
    margin-bottom: 41px;
  }

  .program-pm .program-section-desc {
    line-height: 1.78;
  }

  .time-table-image {
    width: 100%;
    object-fit: cover;
  }
}

@media screen and (max-width: 400px) {
  .block-02-sec-03-speaker-box {
    row-gap: 24px;
    column-gap: 0px;
    justify-content: space-between;
  }
}

/*-------------------------------------------
セッション詳細
-------------------------------------------*/
/* ===========================
   タブ全体ラッパー
=========================== */
.tabs-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.session-top-header {
  color: #fff;
  background-color: #000;
  font-size: 24px;
  font-weight: 700;
  height: 56px;
  line-height: 56px;
  padding-left: 16px;
  margin-bottom: 48px;
  letter-spacing: -0.045em;
}

/* ===========================
   タブバー
=========================== */
.tab-bar {
  display: flex;
  justify-content: space-between;
}

.tab-btn {
  width: 23.8%;
  height: 48px;
  padding: 10px 0;
  font-size: 24px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  cursor: pointer;
  color: #fff;
  transition: opacity 0.15s ease;
  text-align: center;
}

/* 各タブの色 */
.tab-btn[data-tab=common] {
  background-color: #ee595b;
}

.tab-btn[data-tab=architecture] {
  background-color: #2f84c6;
}

.tab-btn[data-tab=civil] {
  background-color: #32c8a0;
}

.tab-btn[data-tab=manufacturing] {
  background-color: #e9954d;
}

.tab-btn {
  position: relative;
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 24px 13px 0 13px;
  border-style: solid;
  border-color: transparent;
  /* 各タブの色に合わせて上辺の色を上書き */
}

.tab-btn[data-tab=common].active::after {
  border-top-color: #ee595b;
}

.tab-btn[data-tab=architecture].active::after {
  border-top-color: #2f84c6;
}

.tab-btn[data-tab=civil].active::after {
  border-top-color: #32c8a0;
}

.tab-btn[data-tab=manufacturing].active::after {
  border-top-color: #e9954d;
}

.tab-btn:not(.active):hover::after {
  content: "";
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 24px 13px 0 13px;
  border-style: solid;
  border-color: transparent;
  opacity: 0.5;
}

.tab-btn[data-tab=common]:not(.active):hover::after {
  border-top-color: #ee595b;
}

.tab-btn[data-tab=architecture]:not(.active):hover::after {
  border-top-color: #2f84c6;
}

.tab-btn[data-tab=civil]:not(.active):hover::after {
  border-top-color: #32c8a0;
}

.tab-btn[data-tab=manufacturing]:not(.active):hover::after {
  border-top-color: #e9954d;
}

/* ===========================
   タブコンテンツ
=========================== */
.tab-content {
  display: none;
  padding: 0px 20px 26px;
  border-top: 4px solid #000;
  margin-top: 21px;
  margin-bottom: 48px;
}

#tab-common {
  border-top-color: #ee595b;
  background-color: rgba(238, 89, 91, 0.2);
}

#tab-architecture {
  border-top-color: #2f84c6;
  background-color: rgba(47, 132, 198, 0.2);
}

#tab-civil {
  border-top-color: #32c8a0;
  background-color: rgba(50, 200, 160, 0.2);
}

#tab-manufacturing {
  border-top-color: #e9954d;
  background-color: rgba(233, 149, 77, 0.2);
}

.tab-content.active {
  display: block;
}

/* ===========================
イントロ文
=========================== */
.intro {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.045em;
  margin-bottom: 23px;
  padding: 0 2px;
}

/* ===========================
セッションカード
=========================== */
.session-card {
  width: 100%;
  min-height: 340px;
  /* display: flex; */
  /* justify-content: space-between; */
  background-color: #fff;
  padding: 20px 22px;
  margin-bottom: 27px;
}

.session-card:last-child {
  margin-bottom: 0;
}

.session-header {
  /* display: flex; */
  /* align-items: center; */
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
  margin-bottom: 18px;
}

.session-time {
  font-size: 24px;
  font-weight: 900;
  /* margin-right: 16px; */
}

#tab-common .session-time {
  color: #ee595b;
}

#tab-architecture .session-time {
  color: #2f84c6;
}

#tab-civil .session-time {
  color: #32c8a0;
}

#tab-manufacturing .session-time {
  color: #e9954d;
}

.session-time-badge {
font-size: 20px;
font-weight: 900;
color: #fff;
padding: 2px 16px 3px;
border-radius: 16px;
margin-right: 16px;
vertical-align: 2px;
}

#tab-common .session-time-badge {
  background-color: #ee595b;
}

#tab-architecture .session-time-badge {
  background-color: #2f84c6;
}

#tab-civil .session-time-badge {
  background-color: #32c8a0;
}

#tab-manufacturing .session-time-badge {
  background-color: #e9954d;
}

/* ===========================
バッジ
=========================== */
.badge-box {
  display: flex;
  align-items: center;
  padding-top: 7px;
  margin-top: -6px;
}

.badge {
  font-size: 16px;
  font-weight: 700;
  padding: 5px 16px 6px;
  border-radius: 5px;
  color: #fff;
  background-color: #000;
  margin-top: 16px;
  margin-right: 16px;
}

.badge-mid:last-child {
  margin-right: 0;
}

/* ===========================
セッションタイトル（青帯）
=========================== */
.session-title-box {
  display: inline-flex;
  flex-direction: column;
}

.session-title {
  display: inline-block;
  /* color: #fff; */
  font-size: 22px;
  font-weight: 700;
  padding: 5px 0px;
  margin-bottom: 16px;
}

#tab-common .session-title {
  color: #ee595b;
}

#tab-architecture .session-title {
  color: #2f84c6;
}

#tab-civil .session-title {
  color: #32c8a0;
}

#tab-manufacturing .session-title {
  color: #e9954d;
}


.session-title-badge {
  width: 145px;
  text-align: center;
font-size: 16px;
font-weight: 700;
border: 1px solid #000;
padding: 1px 4px 2px;
margin-bottom: 4px;
}

#tab-common .session-title-badge {
  color: #ee595b;
}

#tab-architecture .session-title-badge {
  color: #2f84c6;
}

#tab-civil .session-title-badge {
  color: #32c8a0;
}

#tab-manufacturing .session-title-badge {
  color: #e9954d;
}

#tab-common .session-title-badge {
  border-color: #ee595b;
}

#tab-architecture .session-title-badge {
  border-color: #2f84c6;
}

#tab-civil .session-title-badge {
  border-color: #32c8a0;
}

#tab-manufacturing .session-title-badge {
  border-color: #e9954d;
}

/* ===========================
本文エリア（テキスト＋登壇者）
=========================== */
.session-left {

}

.session-right {
  width: 100%;
  margin-top: 16px;
}

.session-body {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.session-text {
  flex: 1;
  min-width: 0;
}

.session-desc {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  word-break: break-all;
  overflow-wrap: break-word;
  letter-spacing: -0.045em;
}

.session-product {
  display: inline-block;
  border: 1px solid #ddd;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  padding: 4px 6px;
  letter-spacing: -0.045em;
}

#tab-common .session-product {
  background-color: #ee595b;
}

#tab-architecture .session-product {
  background-color: #2f84c6;
}

#tab-civil .session-product {
  background-color: #32c8a0;
}

#tab-manufacturing .session-product {
  background-color: #e9954d;
}

/* ===========================
登壇者ブロック
=========================== */
.speaker-block {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  flex-shrink: 0;
}

.speaker-avatar {
  width: 98px;
  height: 98px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #d0d0d0;
  border: 1px solid #bbb;
}

.speaker-company {
  font-size: 12px;
  color: #000000;
  line-height: 1.5;
  letter-spacing: -0.045em;
}

.speaker-name {
  font-size: 18px;
  color: #000000;
  line-height: 1.5;
  letter-spacing: -0.045em;
}

@media screen and (max-width: 768px) {
  .tabs-wrap {
    max-width: 780px;
    margin: 0 16px;
  }

  .session-top-header {
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    padding-left: 8px;
    margin-bottom: 32px;
  }

  .tab-btn {
    font-size: 16px;
  }

  .tab-content {
    padding: 0px 20px 26px;
    margin-bottom: 23px;
  }

  .session-card {
    flex-direction: column;
    padding: 17px 10px 10px;
    margin-bottom: 16px;
  }

  .session-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
  }

  .session-left {
    width: 100%;
    margin-right: 0;
  }

  .session-right {
    width: 100%;
    margin-top: -2px;
  }

  .intro {
    font-size: 14px;
    letter-spacing: 0em;
    line-height: 1.78;
    margin-bottom: 13px;
  }

  .session-time {
    font-size: 20px;
    margin-bottom: 4px;
    letter-spacing: -0.04em;
  }

    .session-time-badge {
font-size: 16px;
vertical-align: 0px;
margin-right: 8px;
    }

  .badge-box {
    margin-top: -9px;
  }

  .badge {
    font-size: 12px;
    padding: 6px 15px;
    margin-right: 18px;
  }

  .session-title {
    font-size: 18px;
    letter-spacing: 0.05em;
  }

  .session-title-badge {
    font-size: 14px;
    width: 130px;
  }

  .session-desc {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .session-product {
    font-size: 12px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .speaker-block {
    flex-direction: row;
    align-items: center;
    width: 100%;
  }

  .speaker-name {
    text-align: left;
  }
}

/*-------------------------------------------
コラム
-------------------------------------------*/
.column {
  min-height: 432px;
  padding: 48px 0;
  background-color: #d9d9d9;
}

.column-wrapper {
  max-width: 780px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.column-left {
  margin-right: 24px;
}

.column-thum {
  width: 300px;
  height: 180px;
  object-fit: cover;
}

.sub-header {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.07em;
}

.column-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
  letter-spacing: -0.07em;
}

.column-title span {
  font-size: 16px;
  font-weight: 700;
}

.column-des {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 18px;
  letter-spacing: -0.07em;
}

.btn-column-detail {
  display: inline-block;
  width: 100%;
  height: 56px;
  line-height: 52px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  border-radius: 8px;
  border: 1px solid #000;
  position: relative;
  transition: all 0.3s ease;
}

.btn-column-detail:hover {
  color: #faff35;
  border: 2px solid #faff35;
}

.btn-column-detail::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 31px;
  transform: translateY(-50%);
  width: 8px;
  height: 12px;
  background-image: url(../images/arrow-black.png);
  background-size: cover;
}

.btn-column-detail:hover::after {
  background-image: url(../images/arrow-yellow.svg);
}

@media screen and (max-width: 768px) {
  .column {
    min-height: 432px;
    padding: 24px 16px;
    background-color: #d9d9d9;
  }

  .column-wrapper {
    max-width: initial;
    width: 100%;
    flex-direction: column;
    margin: 0 auto;
  }

  .column-left {
    margin: 0 auto 24px;
  }

  .column-thum {
    max-width: 340px;
    width: 100%;
    height: 204px;
    object-fit: cover;
  }

  .sub-header {
    letter-spacing: -0.06em;
    line-height: 1.5;
    margin-bottom: 8px;
  }

  .column-title {
    letter-spacing: -0.07em;
  }

  .column-title span {
    letter-spacing: -0.072em;
  }

  .column-des {
    letter-spacing: -0.07em;
    line-height: 1.54;
    margin-bottom: 16px;
  }
}

/*-------------------------------------------
Sponsor
-------------------------------------------*/
.sponsor {
  height: 340px;
  text-align: center;
  padding: 48px 0;
}

.sponsor-label {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.sponsor-list:first-child {
  margin-bottom: 80px;
}

.sponsor-label.sponsorship {
  margin-bottom: 25px;
}

.sponsor-logo-image {
  width: 300px;
  object-fit: cover;
}

/*-------------------------------------------
CTA
-------------------------------------------*/
.CTA {
  height: 196px;
  background-color: #d4d4d4;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bnr-cta-image {
  width: 300px;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .CTA {
    height: 148px;
  }
}

/*-------------------------------------------
Footer
-------------------------------------------*/
.footer {
  background-color: #000000;
  color: #ffffff;
}

.footer-upper {
  padding: 34px 0;
}

.footer-list {
  display: flex;
  justify-content: center;
  column-gap: 60px;
}

.footer-list__item {
  font-size: 12px;
  font-weight: 500;
}

.footer-lower {
  font-size: 10px;
  padding-bottom: 24px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .footer {
    height: auto;
  }

  .footer-upper {
    padding: 16px 0px;
  }

  .footer-nav {
    width: 328px;
    height: auto;
    margin: 0 auto;
  }

  .footer-list {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 24px;
  }

  .footer-lower {
    margin-top: 4px;
  }
}

/*-------------------------------------------
Safari対応
-------------------------------------------*/
@supports (-webkit-hyphens: none) {
  .row_06-label {
    padding: 2px 2px 5px;
  }
}

@supports (-webkit-touch-callout: none) {
  .row_06-label {
    padding: 2px 2px 5px;
  }
}/*# sourceMappingURL=style.css.map */
