@charset "UTF-8";
body {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 300;
  font-style: normal;
}

header {
  height: 65px;
  background: linear-gradient(to right, #63c9d5, #20b9ec);
  display: flex;
  align-items: center;
  padding: 0 20px;
  justify-content: center;
  position: relative;
}
@media (max-width: 768px) {
  header {
    height: 60px;
  }
}

.logo {
  position: absolute;
  left: 11px;
}

.logo img {
  height: 50px;
  width: auto;
}
@media (max-width: 768px) {
  .logo img {
    height: 30px;
  }
}

.hamburger-menu {
  display: none;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
}
@media (max-width: 768px) {
  .hamburger-menu {
    display: block;
  }
}
.hamburger-menu .hamburger-icon {
  width: 30px;
  height: 20px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.hamburger-menu .hamburger-icon span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #333;
  border-radius: 10px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.hamburger-menu .hamburger-icon span:nth-child(1) {
  top: 0px;
}
.hamburger-menu .hamburger-icon span:nth-child(2) {
  top: 10px;
}
.hamburger-menu .hamburger-icon span:nth-child(3) {
  top: 20px;
}
.hamburger-menu .hamburger-icon.open span:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);
}
.hamburger-menu .hamburger-icon.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.hamburger-menu .hamburger-icon.open span:nth-child(3) {
  top: 10px;
  transform: rotate(-135deg);
}

.gnav ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}
.gnav ul li {
  margin-right: 20px;
}
.gnav ul li a {
  text-decoration: none;
  color: #000;
  background: white;
  border: 2px solid #e173ad;
  padding: 10px 15px;
  display: block;
  transition: 0.3s;
  font-family: "rift", sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: bold;
}
.gnav ul li a:hover {
  background: #e173ad;
  color: #fff;
}
@media (max-width: 768px) {
  .gnav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    transition: 0.3s;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .gnav.open {
    left: 0;
  }
  .gnav ul {
    flex-direction: column;
    text-align: center;
  }
  .gnav ul li {
    margin: 20px 0;
  }
  .gnav ul li a {
    font-size: 24px;
    padding: 15px 30px;
    width: 100%;
  }
}

#mv {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
#mv img {
  height: auto;
  max-width: 1920px;
  width: 100%;
}
@media (max-width: 768px) {
  #mv {
    width: 100%;
  }
}
#mv .date-image {
  max-width: 320px;
  position: absolute;
  bottom: 0;
  right: 260px;
}
@media (max-width: 1200px) {
  #mv .date-image {
    bottom: -50px;
    right: 200px;
  }
}
@media (max-width: 1200px) {
  #mv .date-image {
    max-width: 250px;
    bottom: -30px;
    right: 140px;
  }
}
@media (max-width: 768px) {
  #mv .date-image {
    max-width: 150px;
    bottom: -20px;
    right: 10px;
  }
}

#information {
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
  text-align: center;
}
#information img {
  max-width: 400px;
  width: 100%;
  margin: 40px 0;
}
#information .info-list {
  list-style: none;
  padding: 0;
}
#information .info-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
#information .info-list li .date {
  background: linear-gradient(to right, #63c9d5, #20b9ec);
  color: #fff;
  padding: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  font-family: "rift", sans-serif;
  font-weight: 600;
}
@media (max-width: 768px) {
  #information .info-list li .date {
    padding: 5px;
    font-size: 12px;
  }
}
#information .info-list li p {
  flex: 1;
  font-weight: bold;
  text-align: left;
  margin: 0;
  background: #f5f5f5;
  padding: 20px;
}
@media (max-width: 768px) {
  #information .info-list li p {
    background-color: #fff;
    padding: 20px 0;
  }
}
#information .info-list li .icon {
  background: #bbb;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}
@media (max-width: 768px) {
  #information .info-list li {
    display: block;
    justify-items: start;
    padding: 10px 0px;
    border-bottom: 1px solid #ddd;
  }
}
#information .info-list li:last-child {
  border-bottom: none;
}
#information .more-button {
  margin-top: 40px;
}
#information .more-button button {
  background: linear-gradient(to right, #63c9d5, #20b9ec);
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  padding: 12px 40px;
}
#information .more-button button:hover {
  background: #1c9bb5;
}

#about {
  position: relative;
  max-width: 1200px;
  width: 95%;
  margin: 50px auto;
  padding: 30px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  #about {
    padding: 15px;
  }
}
#about .title-container {
  display: flex;
}
#about .title-container img {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
#about::before, #about::after,
#about .corner-top-right,
#about .corner-bottom-left {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border: 5px solid #989b9f;
}
#about::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}
#about::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}
#about .corner-top-right {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}
#about .corner-bottom-left {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}

.title {
  font-size: 24px;
  font-weight: bold;
  color: #22b8cf;
  text-align: center;
}

.text {
  margin: 20px auto;
  max-width: 1000px;
  text-align: left;
  line-height: 1.8;
}

.img-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

#contents {
  background: repeating-linear-gradient(300deg, #5bbbd0, #65c0d3 100px);
  padding-bottom: 30px;
}
#contents .title-container img {
  max-width: 400px;
  width: 100%;
  margin: 40px 0;
}
#contents figure {
  display: flex;
  justify-content: center;
}

.exhibitor-banner a img {
  max-width: 800px;
  width: 100%;
  margin-bottom: 40px;
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(51, 51, 51, 0.2392156863);
  transition: all 0.3s ease;
}
.exhibitor-banner a img:hover {
  transform: scale(1.05);
}

.exhibitor-banner a {
  max-width: 800px;
  width: 95%;
}

/*swiper*/
.swiper-slide {
  width: 80%; /* スライドの幅を調整 */
  opacity: 0.3;
  transform: scale(0.9) !important; /* デフォルトのスライドサイズを小さく */
  transition: transform 0.7s, opacity 0.7s; /* スムーズなアニメーション */
  aspect-ratio: 16/9;
  background-color: #fff;
}

.swiper-slide img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}

.swiper-slide-active {
  opacity: 1;
  transform: scale(1.5) !important; /* 中央のスライドを1.2倍に拡大 */
  z-index: 1; /* 他のスライドより前面に配置 */
}
@media screen and (max-width: 540px) {
  .swiper-slide-active {
    transform: scale(0.9) !important; /* 中央のスライドを1.2倍に拡大 */
  }
}

.swiper-wrapper {
  margin: 30px 0 130px;
}
@media screen and (max-width: 540px) {
  .swiper-wrapper {
    margin: 30px 0;
  }
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: opacity 0.3s ease-in-out;
  transform: translateY(100%);
}

.swiper-pagination {
  position: static !important;
}

.slide-info {
  color: white;
  font-size: 14px;
}

.hall-time {
  position: absolute;
  top: 10px;
  left: 10px;
  font-weight: bold;
}

#contents .program .program-info .time {
  background-color: #fff;
  color: #00beff;
  font-size: 12px;
  font-weight: bold;
}
#contents .program .program-text {
  font-size: 12px;
  padding: 10px;
}

#contents .program .swiper img {
  margin: 0;
}

.hall-time {
  display: flex;
}

#sup {
  background: repeating-linear-gradient(300deg, #e7e7e8, #e1e1e2 100px);
  background-position-x: -20px;
  padding-bottom: 50px;
}
#sup img {
  max-width: 400px;
  width: 100%;
  margin: 40px 0;
}
#sup figure {
  display: flex;
  justify-content: center;
  width: 95%;
  margin: 0 auto;
}
#sup .image-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 95%;
  max-width: 1200px;
  margin: 20px auto;
}
#sup .image-gallery a {
  display: block;
  padding: 20px;
  width: 240px;
  height: 148px;
  background-color: #fff;
}
#sup .image-gallery img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: initial;
  margin: initial;
}
#sup .image-gallery.sponsor-l a {
  width: 300px;
  height: 180px;
}

#access {
  margin: 0 auto;
  text-align: center;
  background-color: #000;
  color: #fff;
}
#access figure {
  width: 95%;
  margin: 0 auto;
}
#access img {
  max-width: 400px;
  width: 100%;
  margin: 40px 0;
}
#access .container {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
}
#access .container iframe {
  width: 50%;
}
@media (max-width: 768px) {
  #access .container iframe {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #access .container {
    display: block;
    width: 95%;
    margin: 0 auto;
  }
}
#access .text-container p {
  text-align: left;
}
@media (max-width: 768px) {
  #access .text-container p {
    max-width: 400px;
    width: 100%;
    margin: 20px 0 0 0;
  }
}

.fixed-icon {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 100px;
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s ease;
}
.fixed-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.3));
}
.fixed-icon:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
}
@media (max-width: 768px) {
  .fixed-icon {
    width: 60px;
  }
}

.fixed-icon-x {
  position: fixed;
  bottom: 90px;
  right: 0;
  width: 80px;
  height: 100px;
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s ease;
}
.fixed-icon-x img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.3));
}
.fixed-icon-x:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
}
@media (max-width: 768px) {
  .fixed-icon-x {
    width: 60px;
    bottom: 70px;
  }
}

.fixed-icon-connpass {
  position: fixed;
  bottom: 180px;
  right: 0;
  width: 80px;
  height: 100px;
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s ease;
}
.fixed-icon-connpass img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.3));
}
.fixed-icon-connpass:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
}
@media (max-width: 768px) {
  .fixed-icon-connpass {
    width: 60px;
    bottom: 140px;
  }
}

/*floormap*/
#floormap .title-container {
  max-width: 460px;
  width: 100%;
  display: flex;
  margin: 40px 0;
  justify-self: center;
}
#floormap .map {
  max-width: 800px;
  margin: 0 auto;
}
#floormap img {
  max-width: 100%;
  margin: 0 auto;
}

/*GAME*/
#game {
  background: repeating-linear-gradient(300deg, #e7e7e8, #e1e1e2 100px);
  text-align: center;
  padding-bottom: 50px;
}
#game .title-container figure {
  width: 95%;
  margin: 0 auto;
}
#game .title-container img {
  max-width: 460px;
  width: 100%;
  padding-top: 40px;
  margin: 40px 0;
}
@media (max-width: 768px) {
  #game .title-container img {
    padding-top: 0;
  }
}
#game .button-wrapper {
  text-align: right;
  margin: 20px auto;
  max-width: 1060px;
}
#game .game-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1060px;
  margin: 0 auto;
}
#game .game-card {
  background: #fff;
  text-align: left;
  display: flex;
  flex-flow: column;
  position: relative;
  transition: 0.3s;
}
#game .game-card a {
  overflow: hidden;
  width: 250px;
  display: flex;
  flex-flow: column;
}
#game .game-card img {
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
#game .game-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px;
  height: 69px;
  overflow: hidden;
}
#game .game-card p {
  font-size: 14px;
  font-weight: bold;
  color: #000;
}
#game .game-card:hover {
  box-shadow: 6px 6px 10px 0 rgba(0, 0, 0, 0.2);
}
#game .game-card:hover::before,
#game .game-card:hover::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border: 6px solid #e173ad;
}
#game .game-card:hover::before {
  top: -3px;
  left: -3px;
  border-right: none;
  border-bottom: none;
}
#game .game-card:hover::after {
  bottom: -3px;
  right: -3px;
  border-left: none;
  border-top: none;
}
#game .game-text {
  padding: 10px;
}
#game .tags {
  margin-top: 10px;
}
#game .tag {
  display: inline-block;
  background: #22b8cf;
  color: #fff;
  font-size: 0.8em;
  padding: 5px 10px;
  margin: 0px 3px 3px 0;
  z-index: 1;
}

/*footer*/
footer {
  background-color: #000;
  padding: 80px;
  position: relative;
}
@media (max-width: 768px) {
  footer {
    padding: 20px;
  }
}
footer p {
  margin-top: 10px;
  font-size: 14px;
  color: #fff;
  position: absolute;
  bottom: 20px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-icon img {
  width: 30px;
  height: auto;
  transition: transform 0.3s ease-in-out;
}

.social-icon:hover img {
  transform: scale(1.1);
}

.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  padding-top: 40px;
}

.tt_table {
  width: 1200px;
  margin: 50px auto;
  border-collapse: separate;
  border-spacing: 10px;
}
.tt_table th {
  width: 120px;
  color: #666;
  font-family: "rift", sans-serif;
  font-size: 27px;
  text-align: right;
}
.tt_table td {
  color: #fff;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-size: 18px;
  font-weight: bold;
  height: 10px;
}
@media screen and (max-width: 540px) {
  .tt_table td {
    font-size: 16px;
  }
}
.tt_table td:nth-of-type(1) {
  width: calc(50% - 120px);
  background-color: #00beff;
}
.tt_table td:nth-of-type(n + 2) {
  width: 25%;
  background-color: #ff6cc1;
}
.tt_table td:nth-of-type(n + 2) .time-tag span {
  color: #ff6cc1;
}
.tt_table td.gray_td {
  background-color: #9c9b9b !important;
  text-align: center;
  vertical-align: middle;
}
.tt_table td.free_pr {
  background-color: #35e071;
}
.tt_table td.free_pr .time-tag span {
  color: #35e071;
}
.tt_table tr.static_height {
  height: 200px;
}
.tt_table tr:nth-of-type(1) th,
.tt_table tr:nth-of-type(1) td {
  font-family: "rift", sans-serif;
  text-align: center;
  font-size: 33px;
}
.tt_table tr:nth-of-type(1) th span,
.tt_table tr:nth-of-type(1) td span {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-size: 18px;
  display: block;
}
.tt_table tr:nth-of-type(9) td {
  background-color: #ff6cc1;
}
.tt_table tr:nth-of-type(9) td .time-tag span {
  color: #ff6cc1;
}

.time-tag {
  font-size: 15px;
  border-bottom: 2px solid #fff;
  padding-bottom: 5px;
  display: flex;
  flex-flow: row wrap;
  text-align: left;
}
.time-tag p {
  flex: 1;
  font-family: "rift", sans-serif;
  font-size: 16px;
}
.time-tag span {
  background-color: #fff;
  padding: 0 10px;
  color: #00beff;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 5px;
  font-size: 14px;
}

.content_title {
  line-height: 1.5;
  margin: 20px 0;
  text-align: left;
}

.guest_wrap {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
}
.guest_wrap .item {
  display: flex;
  flex-flow: column;
  align-items: center;
  width: calc((100% - 60px) / 4);
}
@media screen and (max-width: 540px) {
  .guest_wrap .item {
    width: calc((100% - 20px) / 2);
  }
}
.guest_wrap .item .ph {
  aspect-ratio: 1/1;
  margin-bottom: 10px;
}
.guest_wrap .item .ph img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  border-radius: 50%;
  width: 100%;
}
@media screen and (max-width: 540px) {
  .guest_wrap .item .ph {
    width: 120px;
  }
}
.guest_wrap .item .name {
  font-size: 15px;
  margin-bottom: 5px;
}
@media screen and (max-width: 540px) {
  .guest_wrap .item .name {
    font-size: 13px;
  }
}
.guest_wrap .item .shoulder {
  font-size: 10px;
  line-height: 1.5;
}

[class*=hands-on] .guest_wrap .item {
  width: calc((100% - 30px) / 2);
  max-width: 88.75px;
}

#timetable {
  background: repeating-linear-gradient(300deg, #e7e7e8, #e1e1e2 100px);
  text-align: center;
  padding-bottom: 50px;
}
#timetable .title-container {
  text-align: center;
}
#timetable .title-container img {
  max-width: 460px;
  width: 100%;
  padding-top: 40px;
  margin: 40px 0;
}

.table-wrap {
  overflow-x: scroll;
}

.booth span {
  display: block;
  border: 1px solid #00beff;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 5px;
  color: #00beff;
}

#tt-detail {
  background: repeating-linear-gradient(300deg, #e7e7e8, #e1e1e2 100px);
  text-align: center;
  padding: 50px 0;
}
#tt-detail .detail-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background-color: #fff;
  border: solid 4px #ff6cc1;
}
#tt-detail .detail-container .hall-time-tag {
  display: flex;
}
#tt-detail .detail-container .hall-time-tag span {
  background-color: #65c9d5;
  padding: 5px 10px;
  color: #fff;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 10px;
  font-size: 14px;
}
#tt-detail .detail-container .tt-title {
  text-align: left;
  font-size: 28px;
  font-weight: bold;
  margin: 20px 0;
  border-bottom: solid 3px #666464;
  line-height: 1.4;
  padding-bottom: 20px;
}
@media screen and (max-width: 540px) {
  #tt-detail .detail-container .tt-title {
    font-size: 20px;
  }
}
#tt-detail .content-wrap {
  display: flex;
  gap: 30px;
  flex-flow: row wrap;
}
#tt-detail .content-wrap .ct-image {
  width: 50%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 540px) {
  #tt-detail .content-wrap .ct-image {
    width: 100%;
  }
}
#tt-detail .content-wrap .detail-wrap {
  text-align: left;
  line-height: 1.5;
  flex: 1;
}
@media screen and (max-width: 540px) {
  #tt-detail .content-wrap .detail-wrap {
    flex: initial;
    width: 100%;
  }
}

.tt_item {
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px;
}

.detail_txt {
  margin: 0 0 20px;
}
.detail_txt a {
  color: #00beff;
}

.single-contents .guest_wrap .item {
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 540px) {
  .single-contents .guest_wrap .item {
    width: calc((100% - 20px) / 2);
  }
}
.single-contents .guest_wrap .item:hover .ph::before {
  transform: rotate(-90deg);
}
.single-contents .guest_wrap .item:hover .ph::after {
  transform: translate(10px, -10px);
}
.single-contents .guest_wrap .ph {
  position: relative;
}
.single-contents .guest_wrap .ph::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(images/gt_circle.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all ease 0.5s;
}
.single-contents .guest_wrap .ph::after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: url(images/gt_arrow.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all ease 0.5s;
}

#fancybox-outer,
#fancybox-content {
  border-radius: 20px;
}

#fancybox-content {
  position: relative;
}
#fancybox-content::before, #fancybox-content::after {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(images/gt_border.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}
#fancybox-content::before {
  top: 25px;
  left: 25px;
}
#fancybox-content::after {
  bottom: 25px;
  right: 25px;
  transform: rotate(180deg);
  transform-origin: center;
}

.fancy-ico span {
  left: 5px !important;
  top: 5px !important;
  width: 34px !important;
  height: 34px !important;
}

#fancybox-close span::after,
#fancybox-close span::before {
  top: 13px !important;
  left: 5px !important;
  width: 20px !important;
  height: 3px !important;
}

#fancybox-frame {
  padding: 20px 50px;
}

.df_row {
  display: flex;
  flex-flow: row wrap;
}
.df_row .guest_photo {
  width: 240px;
}
.df_row .guest_photo img {
  width: 100%;
}
.df_row .txt_field {
  flex: 1;
  padding-left: 20px;
}
@media screen and (max-width: 400px) {
  .df_row .txt_field {
    padding-left: 0;
    margin-top: 10px;
  }
}
.df_row .sub_t {
  background-color: #00beff;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 16px;
  color: #fff;
  font-family: "rift", sans-serif;
  margin-bottom: 10px;
}
.df_row .name {
  font-size: 18px;
  margin-bottom: 10px;
}
.df_row .shoulder {
  margin-bottom: 20px;
  font-size: 14px;
}
.df_row .shoulder p {
  margin-bottom: 5px;
}
.df_row .profile {
  font-size: 14px;
}
.df_row .profile p {
  margin-bottom: 5px;
}

@media screen and (max-width: 400px) {
  #fancybox-wrap {
    height: 80% !important;
    top: 775px !important;
  }
}

.co-logo {
  width: 170px;
  height: 110px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
}
.co-logo figcaption {
  text-align: center;
  color: #fff;
  margin-top: 30px;
  font-size: 16px;
}
.co-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.free_pr a {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
}
.free_pr .txt {
  width: calc(100% - 190px);
}

.link_btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto;
  border-bottom: 2px solid #fff;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: 2px solid #20b9ec;
  background-color: #fff;
  color: #20b9ec;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}

.download-btn .icon {
  width: 20px;
  height: 20px;
  margin-left: 8px;
}

.download-btn:hover {
  background-color: #20b9ec;
  color: #fff;
}

.button-wrapper {
  text-align: center;
  margin: 40px 0;
}/*# sourceMappingURL=style.css.map */