@charset "UTF-8";

/**
* ベース
------------------------------------------------- */
html {
  font-size: calc(100vw * 10 / 1920);
  scroll-behavior: smooth;
  scroll-padding-top: 10rem;
}

body {
  font-family: "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Miryo", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
  display: flex;
  flex-direction: column;
  height: auto !important;
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

a {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
}

ul,
li {
  list-style: none;
}

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

p {
  margin: 0 0 1.5rem;
  line-height: 1.8;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

/**
* header
-----------------------------------------------------------------*/
header {
  width: 100%;
  height: 8.0rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: rgba(255,255,255,0.8);
}

header a {
  color: #333;
}

.site-logo {
  position: relative;
  max-width: 50%;
  width: 100%;
  padding: 0 0 3rem;
  z-index: 1;
}

.site-logo::before {
  content: "";
  display: inline-block;
  max-width: 60%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 95%;
  right: 75%;
  background: url(./img/chameleon.png) no-repeat 100% 100%/ contain;
}

.seminar {
  width: 100%;
  max-width: 70%;
}

.header-inner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-menu {
  display: flex;
}

.nav-menu li {
  height: 100%;
  margin-right: 6.0rem;
  font-weight: 700;
}

.menu-item {
  display: flex;
}

.menu-item a:hover {
  color: #91c31e;
}

.sub-link li {
  margin: 0;
}

.link-btn {
  padding: 1.6rem 6.0rem;
  border-radius: 1.0rem;
  font-size: 2.0rem;
  font-weight: 500;
  color: #fff;
  background-color: #5aaead;
}

.entry.btn-c {
  position: absolute;
  top: 75rem;
  left: 5rem;
  padding: 3rem 6rem 3rem 3rem;
  border-radius: 5.0rem;
  color: #fff;
  background-color: #f48da4;
}

.entry.btn-b {
  position: absolute;
  top: 75rem;
  right: 5rem;
  padding: 3rem 6rem 3rem 3rem;
  border-radius: 5.0rem;
  color: #fff;
}

/**
* アニメーション
-----------------------------------------------------------------*/
/* アニメーションの初期状態 (非表示で少し下に位置) */
.fade-in-element {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: 0.2s;
}

/* JavaScriptによって要素が画面内に入ったときに付与されるクラス */
.fade-in-element.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-element.delay-1 { transition-delay: 0.1s; }
.fade-in-element.delay-2 { transition-delay: 0.2s; }
.fade-in-element.delay-3 { transition-delay: 0.3s; }

.animate-scale-up {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.animate-scale-up.is-visible {
  opacity: 1;
  transform: scale(1);
}

.animate-slide-left {
  opacity: 0;
  transform: translateX(-3rem);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.animate-slide-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/**
* main
-----------------------------------------------------------------*/
.wrapper {
  width: 100%;
}

.top-layout {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-inner.main-image {
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  max-height: 100%;
  margin:8rem 0 6rem;
  background: url(./img/d001.png) no-repeat 100% 100% / cover;
  background-attachment: fixed;
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
  padding-top: 5%;
}

.content-area {
  width: 120rem;
  margin: 0 auto;
  padding-bottom: 6rem;
}

.bk-image {
  width: 100%;
  background: url(./img/d002.png) no-repeat 100% 100% /cover;
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
}

.bk-image > .item-list {
  width: 120rem;
  margin: 0 auto;
}

.catchcopy,
.catchcopy + p {
  text-align: center;
  color: #6e4da0;
  font-size: 5.2rem;
  font-weight: 700;
}

.catchcopy + p {
  padding-bottom: 5rem;
  font-size: 3.2rem;
}

.event-data {
  margin-top: 2rem;
  width: 30%;
}

.event-data img {
  width: 100%;
}

.event-box {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 3rem;
  padding: 0 10rem;
}

.event-box img:nth-child(1) {
  margin-right: 4rem;
}

.img-left {
  width: 50rem;
}

.img-left img {
  padding: 0 2rem 0 0;
}

.img-right {
  display: flex;
  justify-content: space-around;
  width: 80rem;
}

.img-right img:nth-child(1) {
  width: 28rem;
  margin: 0;
  object-fit: cover;
}

.img-right img:nth-child(2) {
  width: 45rem;
  object-fit: contain;
}

.event-box .small {
  font-size: 2.4rem;
}

.item-list span {
  color: #e24a5e;
}

.item-list li {
  width: 100%;
  position: relative;
  margin-bottom: 3rem;
  padding-left: 5rem;
  font-size: 2.4rem;
  font-weight: 700;
}

.item-list li::before {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0.5rem;
  width: 2rem;
  height: 2rem;
  background-color: #f7870c;
  transform: rotate(45deg);
}

/* お申し込みボタン */
.btn {
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  vertical-align: middle;
  border-radius: 0.5rem;
  letter-spacing: 0.1rem;
  font-size: 1.6rem;
}

.btn-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 0;
  width: 100%;
  text-align: center;
}

a.btn-c {
  position: relative;
  padding: 3rem 6rem 3rem 3rem;
  transition: all 0.3s;
  border-radius: 100vh;
  background-image: linear-gradient(to right, #003c41 0%, #91c31e 100%);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}

a.btn-b {
  position: relative;
  padding: 3rem 6rem 3rem 3rem;
  transition: all 0.3s;
  border-radius: 100vh;
  background-image: linear-gradient(to right, #2580b3 0%, #cbbacc 100%);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}

a.btn-login {
  position: relative;
  padding: 3rem 6rem;
  transition: all 0.3s;
  border-radius: 100vh;
  background-image: linear-gradient(to right, #2580b3 0%, #5aaead 100%);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}

a.btn-login:hover {
  transform: scale(1.1);
  color: #fff;
}

a.btn-c:before,
a.btn-b:before {
  font-size: 1.6rem;
  line-height: 1;
  position: absolute;
  top: calc(50% - 0.8rem);
  right: 3.0rem;
  margin: 0;
  padding: 0;
  content: ">";
}

a.btn-c:hover,
a.btn-b:hover {
  transform: scale(1.1);
  color: #fff;
}

.cta-btn-wrapper {
  position: fixed;
  left: 0;
  bottom: 15%;
  transform: translateY(-20%);
  z-index: 20;
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  border-radius: 0 1rem 1rem 0;
  border-right: none;
  background-image: linear-gradient(to top, #003c41 0%, #91c31e 100%);
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.3em;
  line-height: 1.2;
}

.login {
  background-image: linear-gradient(to right, #2580b3 0%, #5aaead 100%);
}

/* 動画用アコーディオン */
.accordion-video-container {
  width: 100%;
  max-width: 30%;
  color: #fff;
  border: 1px solid #ccc;
  border-radius: 0.8rem;
  margin: 2rem 0;
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  padding: 1.2rem 1.5rem;
  background-color: #003c41;
  border: none;
  border-bottom: 1px solid #ccc;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.accordion-trigger:hover {
  background-color: #91c31e;
  color: #fff;
}

.accordion-trigger.active {
  background-color: #91c31e;
  border-bottom: 1px solid #ccc;
}

.accordion-trigger.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease-out;
}

.accordion-panel {
  background-color: #fff;
  transition: max-height 0.35s ease-out, padding-top 0.35s ease-out, padding-bottom 0.35s ease-out;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}


#myAccordionVideo {
  display: block;
  max-width: 100%;
  height: auto;
  border: 1px solid #eee;
}


/* パンフレット画像 */
.pamphlet {
  padding-bottom: 5rem;
  text-align: center;
}

.pamphlet img {
  max-width: 80%;
}

.pamphlet img:nth-child(1) {
  margin-bottom: 10rem;
}

.btn-flat {
  display: block;
  width: calc(50% / 2);
  overflow: hidden;
  margin-right: 5rem;
  padding: 3.0rem 6rem;
  color: #fff;
  font-weight: 600;
  background: #333;
}

.btn-flat span {
  position: relative;
}

.btn-flat::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  transition: all .5s ease-in-out;
  transform: translateX(-96%);
  background: #e24a5e;
}

.btn-flat:hover:before {
  transform: translateX(0%);
}

/**
* NFTアイテム
------------------------------------------------- */
.nft-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
  margin-top: 6rem;
}

.nft-item p {
  width: 60rem;
  margin: 0 5rem 0 0;
  font-size: 2.0rem;
}

.nft-item p > span {
  font-size: 2.4rem;
  font-weight: 600;
  color: #e24a5e;
}

/* 抽選会 */
 .present-box img {
  width: 100%;
 }

/* 会場地図 */
.content-area.map {
  margin-bottom: 10rem;
  text-align: center;
}

/* ポイントラリー */
.point-rally {
  text-align: center;
}

.point-rally img {
  padding: 6rem 0 4rem;
}

.point-rally p > span {
  background: linear-gradient(transparent 60%, rgba(252, 210, 129, 0.6) 40%);
  padding: 0 0.1em;
  font-weight: 600;
}

.wrap-reverse {
  display: flex;
  flex-direction: column-reverse;
}

.wrap-reverse p {
  font-size: 2.2rem;
  font-weight: 700;
}

.wrap-reverse span {
  position: relative;
  padding: 0 0.5rem;
  font-size: 2.6rem;
  color: #e24a5e;
}

.wrap-reverse span::after {
  content: "";
  display: inline-block;
  width: 5rem;
  height: 5rem;
  background-image: url(./img/yellow_triangle.png);
  background-size: contain;
  margin-left: 0.5rem;
  position: absolute;
  bottom: 1rem;
  left: 5rem;
}

.section-title {
  text-align: center;
  color: #f7870c;
  font-size: 5.2rem;
  font-weight: 700;
}

/* マイページ */
.content-area.my-page {
  width: 100%;
  margin-bottom: 6rem;
  padding: 5rem 0;
  font-size: 1.6rem;
  background-color: #f8f6f4;
}

.my-page h2 {
  text-align: center;
  font-size: 2.0rem;
}

.my-page .text-green {
  display: block;
  font-size: 3.6rem;
  color: #91c31e;
}

.text-center > p {
  text-align: center;
  margin: 0;
  padding: 2rem 0 5rem;
  font-size: 1.6rem;
}

.my-page .text-red {
  color: #e24a5e;
  font-weight: 700;
}

.text-center .step-plan {
  padding: 5rem 0 6rem;
  font-size: 2.0rem;
  font-weight: 700;
}

.large {
  font-size: 2.6rem;
  font-weight: 700;
  color: #e24a5e;
}

.text-box {
  display: inline-block;
  margin-bottom: 5rem;
  width: 100%;
}

.text-left {
  width: 45%;
  margin: 0 auto;
  font-size: 2.4rem;
  font-weight: 700;
}

.nomber {
  content: "01";
  padding-right: 2rem;
  vertical-align: middle;
  font-size: 5.6rem;
  font-weight: 700;
  color: #91c31e;
}

.text-right {
  max-width: 100%;
  width: 45%;
  margin: 0 auto;
  font-size: 2.0rem;
}

.triangle {
  width: 4rem;
  height: calc(6rem / 2);
  margin: 0 auto 5rem;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: #91c31e;
}

/* プログラム */
.content-area.program {
  padding-bottom: 10rem;
}

.sub-title {
  position: relative;
  margin: 3rem;
  padding-bottom: 1.5rem;
  text-align: center;
  font-size: 3.6rem;
}

.sub-title::after {
  content: "";
  background-color: #f7870c;
  width: 4rem;
  height: 0.5rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.schedule-data {
  margin: 5rem 0;
  padding: 1rem 0;
  text-align: center;
  font-size: 3.2rem;
  background-color: #333;
  color: #fff;
}

.program-layout {
  display: flex;
}

.time-line {
  padding: 2.5rem;
  font-size: 2.2rem;
  font-weight: 700;
  background-color: #edebf2;
}

.time-line.special {
  background-color: #373644;
  color: #d6d2d6;
}

.lecture {
  font-size: 1.8rem;
}

.special-lecture {
  color: #f00082;
  font-size: 2.4rem;
}

.time-line p:nth-child(1) {
  padding: 0.5rem;
  background-color: #009fc8;
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  border-radius: 0.5rem;
}

.time-line p:nth-child(2) {
  padding: 0.5rem;
  background-color: #f00082;
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  border-radius: 0.5rem;
}

.program-area {
  display: flex;
  padding-top: 2rem;
}

.box-left {
  flex: none;
  padding: 0 3rem;
  width: 22rem;
}

.program-title {
  color: #f7870c;
}

.box-right {
  margin-bottom: 5rem;
}

.box-right p:nth-of-type(1) {
  font-size: 1.6rem;
  font-weight: 700;
  color: #555;
}

.box-right p:nth-of-type(2) {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
}

.profile li {
  color: #333;
  font-size: 1.4rem;
  font-weight: 700;
}

.profile li:nth-child(1) {
  display: inline-block;
  width: 16rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  background-color: #91c31e;
  color: #fff;
  text-align: center;
  border-radius: 0.5rem;
}

.flex-box {
  display: flex;
}

.program-flex {
  flex-direction: column;
}

/* 企業一覧 */
.company-list {
  width: 100%;
  padding: 0 6rem;
  text-align: center;
}


.company-list p {
  position: relative;
  padding-bottom: 0.3rem;
  display: inline-block;
  text-align: center;
  font-weight: 700;
}

.company-list p::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.3rem;
  width: 100%;
  height: 1.5rem;
  transform: skew(-45deg);
  background-image: repeating-linear-gradient(90deg, transparent 0 5px, #fcd281 5px 12px);
  opacity: 0.7;
  z-index: -1;
}

.company-list span {
  font-size: 3.4rem;
  color: #e24a5e;
}

.table-layout {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

th {
  background-color: #91c31e;
  color: #fff;
}

.summary {
  width: 50%;
}

th,
td {
  border: solid 0.1rem #b1cf6e;
  padding: 1em;
  font-size: 1.6rem;
}


/* テーブルデザイン */
.sample2 {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  background: #fff;
  border: none;
}
.sample2 th,
.sample2 td {
  text-align: left;
  font-size: 14px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 8px;
  vertical-align: middle;
  box-sizing: border-box;
}
.sample2 th {
  font-weight: 700;
  text-align: center;
}
.sample2 thead th {
  color: #fff;
  background: #003C41;
}

.sample2 tbody th {
  color: #333;
}

.sample2 tbody td:last-child {
text-align: right;
}
.sample2 thead th:first-child,
.sample2 thead th:last-child {
width: 13%;
}

/* LT発表スケジュール */
.lt-schedule table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.lt-schedule td:not(:first-child) {
  text-align: left;
}

.heading01 {
  position: relative;
  margin-top: 10rem;
  padding: 2rem;
  color: #333;
  font-size: 2.6rem;
  font-weight: 700;
}

.heading01::before {
  position: absolute;
  bottom: 50%;
  left: 50%;
  color: #e2f4b8;
	font-size: 7rem;
  line-height: 1;
	font-weight: 700;
  font-family: "Oswald", sans-serif;
  content: attr(data-word);
  pointer-events: none;
  z-index: -2;
}

.table-section-header td {
  background-color: #e2f4b8;
  color: #3c7538;
  font-weight: bold;
  text-align: center;
  padding: 1rem 1.2rem;
}


/* 主催ご挨拶 */
.msg-content {
  padding: 0 8rem;
}

.greeting {
  position: relative;
  border-bottom: 0.4rem solid #e3e3e3;
  padding-bottom: 0.5rem;
  margin-bottom: 2.0rem;
}

.greeting::before {
  content: "";
  position: absolute;
  bottom: -0.4rem;
  left: 0;
  width: 5rem;
  height: 0.4rem;
  background-color: #91c31e;
  z-index: 1;
}

.greeting-name {
  display: flex;
  flex-direction: column;
  padding-bottom: 9rem;
  text-align: right;
  font: 600 2.4rem 'Noto Serif CJK', serif;
}

.greeting-name span {
  padding: 3rem 0 1rem;
  font-size: 1.8rem;
}

/* お問い合わせ */
.contact {
  padding-bottom: 12rem;
}

.content-info {
  display: flex;
  justify-content: center;
  font-weight: 600;
}

.tel-box {
  padding-right: 12rem;
  text-align: center;
}

.mail-box {
  display: flex;
  align-items: center;
}

.mail-box a {
  padding: 2rem 3.5rem;
  background-color: #333;
  border-radius: 1.0rem;
  color: #fff;
}

/**
* footer
----------------------------------------------------------------- */
footer {
  padding: 5rem;
  background-color: #333;
}

.copyright {
  text-align: center;
  color: #fff;
}


/* ▼ここからSP対応 */
@media screen and (max-device-width:768px) {
  html {
    font-size: 62.5%;
  }

  body {
    font-size: 1.4rem;
    line-height: 1.4;
  }

  img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  /* SP-header */
  header a {
    display: inline-block;
    width: 100%;
    height: auto;
    color: #fff;
  }

  .header-inner {
    position: relative;
    justify-content: end;
  }

  .nav-menu {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    transform: translateX(100%);
    background-color: #fff;
    transition: ease .4s;
  }

  .nav-menu li {
    width: 100%;
    margin: 0;
    font-size: 2.0rem;
    /* border-bottom: solid 0.1rem #003c41; */
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .menu-item {
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin: 0;
    text-align: center;
    line-height: 10rem;
  }

  .sp-menu {
    width: 4.8rem;
    height: 100%;
    margin: 2rem;
  }

  .hamburger {
    background-color: transparent;
    border-color: transparent;
    z-index: 9999;
  }

  .hamburger span {
    display: block;
    width: 100%;
    height: 0.1rem;
    background-color: #003c41;
    position: relative;
    transition: ease .4s;
  }

  .hamburger span:nth-child(1) {
    top: 0;
  }

  .hamburger span:nth-child(2) {
    margin: 0.8rem 0;
  }

  .hamburger span:nth-child(3) {
    top: 0;
  }

  .nav-menu.active {
    transform: translateX(0);
    justify-content: center;
    background-color: #91c31e;
  }

  .hamburger.active span:nth-child(1) {
    top: 1.8rem;
    transform: rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    top: 0;
    transform: rotate(-45deg);
  }

  .content-inner.main-image {
    height: auto;
    margin-top: 8rem;
  }

  .bk-image > .item-list {
    max-width: 100%;
  }

  .section-title {
    font-size: 2.8rem;
  }

  .sub-title {
    margin: 1.5rem;
    padding-bottom: 0.75rem;
    font-size: 2.2rem;
  }

  .schedule-data {
    margin-bottom: 0;
    font-size: 2.0rem;
  }

  .catchcopy {
    font-size: 2.8rem;
  }

  .catchcopy + p {
    padding-bottom: 2.5rem;
    font-size: 2.2rem;
  }

  .btn-center {
    padding: 3rem 0 4rem;
  }


  /* main */
  .site-logo {
    max-width: 100%;
    width: 100%;
    padding: 0 0 1.5rem;
  }

  .site-logo::before {
    max-width: 80%;
    width: 100%;
    height: 130%;
    top: 100%;
    right: 55%;
  }

  .seminar {
    max-width: 100%;
  }

  .accordion-video-container {
    max-width: 100%;
  }

  .event-data {
    width: 55%;
    margin-left: auto;
  }

  .event-wrap {
    display: inline-block;
    width: 100%;
    /* margin-top: 20%; */
    padding: 0 3rem;
  }

  .event-box {
    width: 100%;
    flex-direction: column;
    padding: 0;
  }

  .event-box img:nth-child(1) {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2rem;
  }

  .img-left {
    width: 100%;
  }

  .img-right {
    width: 50%;
  }

  .img-right img:nth-child(1),
  .img-right img:nth-child(2) {
    width: 100%;
  }

  .content-area {
    width: 100%;
    height: auto;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
  }

  .btn-flat {
    width: 100%;
    left: 0;
    margin: 0;
    padding: 2.0rem 3rem;
    font-size: 1.4rem;
  }

  .pamphlet img {
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .nft-item {
    flex-direction: column-reverse;
  }

  .nft-item p {
    width: 100%;
    padding-bottom: 1rem;
    font-size: 1.2rem;
  }

  .nft-item p > span {
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
  }

  .present-box img {
    max-width: 100%;
    padding: 0;
  }

  .present-box p {
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
  }

  .item-list {
    padding: 0 1.5rem;
  }

  .item-list li {
    margin-bottom: 1.5rem;
    padding-left: 2.5rem;
    font-size: 1.6rem;
  }

  .item-list li::before {
    width: 1.2rem;
    height: 1.2rem;
  }

  .point-rally {
    margin-bottom: 0;
  }

  .point-rally img {
    padding: 3rem 0 2rem;
  }


  /* 会場地図案内 */
  .content-area.map {
    margin-bottom: 5rem;
  }

  /* マイページ */
  .content-area.my-page {
    padding: 2.5rem 2.5rem;
  }

  .my-page .text-green {
    font-size: 2.8rem;
  }

  .text-center > p {
    padding: 1rem 0 2.5rem;
    text-align: justify;
    font-size: 1.4rem;
  }

  .nomber {
    font-size: 4.2rem;
  }

  .text-box {
    flex-direction: column;
    margin-bottom: 2.5rem;
  }

  .text-left {
    width: 100%;
    margin: 0;
  }

  .text-right {
    width: 100%;
    margin: 0;
    font-size: 1.6rem;
  }

  .triangle {
    margin: 0 auto 2.5rem;
  }

  /* 講演プログラム */
  .program-title {
    font-size: 1.8rem;
  }

  .content-area.program {
    margin: 0;
    padding: 0;
  }

  .time-line {
    padding: 1.5rem 2.5rem;
  }

  .program-area {
    flex-direction: column;
    padding: 1.5rem;
  }

  .box-left {
    margin: 0 auto 1.5rem;
    padding: 0;
    width: 14.5rem;
  }

  .box-right {
    margin-bottom: 2.5rem;
  }

  .flex-box {
    flex-direction: column;
  }


  /* 主催者ご挨拶 */
  .msg-content {
    padding: 1.5rem;
    text-align: justify;
  }

  .greeting-name {
    padding: 0;
    font-size: 2.2rem;
  }

  .greeting-name span {
    padding: 1rem 0;
  }

  /* 出展企業一覧 */
  .company-list span {
    font-size: 2.4rem;
  }

  .company-list p {
    font-size: 1.2rem;
  }

  .company-list p::before {
    left: calc(50% - 18rem);
    width: 35rem;
  }

  .wrapper {
    width: 100%;
  }

  .top-layout {
    padding: 0 2.5rem;
  }

  .program-layout {
    display: block;
  }

  /* LTスケジュール */
  .heading01 {
    margin-top: 3rem;
  }

  /* お問い合わせ */
  .content-info {
    flex-direction: column;
  }

  .tel-box {
    padding: 0;
  }

  .mail-box {
    justify-content: center;
  }

  footer {
    padding: 2.5rem;
  }

  .copyright {
    margin: 0;
  }

  /**
  * tableデザイン
  ----------------------------------------------------------------- */
  .sample2 thead {
    display:none;
  }

  .sample2 tr {
    background-color: unset;
  }

  .sample2 th, .ex_sample2 td {
    display: block;
    width: 100%;
    border: 0;
  }

  .sample2 tbody th{
    background: #91C31E;
    color:#fff;
    text-align: center;
  }

  .sample2 tbody tr td:not(:last-child) {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .sample2 tbody tr td:not(:last-child)::before{
    content: attr(data-label);
    width: fit-content;
    padding: 0.2em 1em;
    border-radius: 100vw;
    font-size: 12px;
    background: #eee;
  }

  .sample2 tbody td:last-child::before{
    content: attr(data-label);
    display: inline-block;
    margin-right: 10px;
  }

  .sample2 tbody td:last-child{
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
  }

}