@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body .m_sp {
  display: none;
}
@media screen and (max-width: 450px) {
  body .m_sp {
    display: block;
  }
}
body .sp {
  display: none;
}
@media screen and (max-width: 1023px) {
  body .sp {
    display: block;
  }
}
body .pc {
  display: block;
}
@media screen and (max-width: 1023px) {
  body .pc {
    display: none;
  }
}
body .wrap {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
}
body h2 {
  font-family: "Roboto", sans-serif;
  font-size: 64px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
}
body h2::first-letter {
  color: #2260d0;
}
body h2::after {
  content: attr(data-text);
  color: #333;
}
body h3 {
  position: relative;
  padding: 0 65px;
  text-align: center;
  width: 265px;
  margin: 0 auto 15px;
}
body h3:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: #000;
}
body h3 span {
  position: relative;
  padding: 0 1em;
  background: #fff;
}
body .btn {
  display: block;
  color: #fff !important;
  background-color: #bf0033 !important;
  font-weight: bold;
  padding: 10px 45px;
  border-radius: 100px;
  border: solid 2px #bf0033 !important;
  transition: 0.5s;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
body .btn:hover {
  background-color: #fff !important;
  border: solid 2px #bf0033 !important;
  color: #bf0033 !important;
  transition: 0.5s;
}
body a {
  color: #333;
  text-decoration: none;
}
body section {
  padding: 60px 0;
}
body .mv {
  background-image: url(../images/mv-bg.jpeg);
  background-position: bottom center;
  background-size: cover;
}
body .application-link {
  background-image: linear-gradient(
    90deg,
    rgb(231, 244, 252),
    rgb(255, 255, 255) 50%,
    rgb(229, 244, 252)
  );
  border-top: 5px solid #bf8c00;
  border-bottom: 5px solid #bf8c00;
}
body .concept {
  background-image: linear-gradient(
    125deg,
    rgb(197, 230, 246) 15%,
    rgb(255, 255, 255) 15% 85%,
    rgb(201, 228, 239) 85%
  );
}
body .overview,
body .outline {
  background-image: url(../images/bg1.jpg);
  background-size: contain;
  background-repeat: repeat;
}
body .timetable {
  background-color: #fff;
}
body .application,
body .sponsor {
  background-color: #ebf4fb;
}
body .speakers {
  background-image: url(../images/bg2.jpg);
  background-size: cover;
  background-repeat: repeat-y;
}
@media screen and (max-width: 720px) {
  body .speakers {
    background-size: contain;
  }
}
body .privacy_policy {
  background-color: #c5e6f6;
}

header {
  background-color: rgb(255, 255, 255);
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  position: fixed;
  transition: transform 0.3s 0.3s; /* アニメーションの設定 */
  font-size: 18px;
  z-index: 10000;
}
header.hidden {
  transform: translateY(-93px); /* ヘッダの高さだけ上に移動 */
}
@media screen and (max-width: 1023px) {
  header.hidden {
    transform: translateY(-80px); /* ヘッダの高さだけ上に移動 */
  }
}
@media screen and (max-width: 1023px) {
  header {
    height: 80px;
    position: sticky;
    top: 0;
    z-index: 10;
  }
}
header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1140px) {
  header .logo {
    width: 120px;
    padding: 24px 0 0 0;
  }
}
header .logo img {
  max-width: 150px;
  width: 100%;
}
header nav {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0 auto;
  padding: 20px 0;
}
@media screen and (max-width: 1023px) {
  header nav {
    padding: 0;
  }
}
header nav ul {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  header nav ul {
    flex-direction: column;
  }
}
header nav ul li {
  list-style: none;
  margin-right: 30px;
  font-weight: bold;
}
header nav ul li a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1080px) {
  header nav ul li {
    margin-right: 20px;
    font-size: 17px;
  }
}
@media screen and (max-width: 1023px) {
  header nav ul li {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
header nav ul li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1023px) {
  header nav ul li:last-child {
    margin-right: 0;
    margin-bottom: 0px;
  }
}
header nav ul li .btn {
  font-size: 18px;
}
header nav ul li .btn:hover {
  opacity: 1;
}
@media screen and (max-width: 1023px) {
  header nav ul li .btn {
    padding: 10px 30px;
  }
}
header button {
  display: none;
}
@media screen and (max-width: 1023px) {
  header button {
    display: inline-block;
  }
  header .hamburger-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    cursor: pointer;
  }
  header .hamburger-overlay__line {
    position: absolute;
    left: 11px;
    width: 26px;
    height: 2px;
    background-color: #333;
    transition: all 0.6s;
  }
  header .hamburger-overlay__line:nth-of-type(1) {
    top: 14px;
  }
  header .hamburger-overlay__line:nth-of-type(2) {
    top: 23px;
  }
  header .hamburger-overlay__line:nth-of-type(3) {
    top: 32px;
  }
  header .hamburger-overlay.active .hamburger-overlay__line {
    background-color: #333;
  }
  header .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
  }
  header .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
    opacity: 0;
  }
  header .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
  }
  header .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(246, 254, 255, 0.95);
    visibility: hidden;
    opacity: 0;
    transition: all 0.6s;
    z-index: 900;
  }
  header .nav-overlay.active {
    visibility: visible;
    opacity: 1;
  }
  header .nav-overlay__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
  }
  header .nav-overlay__list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  header .nav-overlay__item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s;
  }
  header .nav-overlay.active .nav-overlay__item {
    opacity: 1;
    transform: translateY(0);
  }
  header .nav-overlay.active .nav-overlay__item:nth-child(1) {
    transition-delay: 0.1s;
  }
  header .nav-overlay.active .nav-overlay__item:nth-child(2) {
    transition-delay: 0.2s;
  }
  header .nav-overlay.active .nav-overlay__item:nth-child(3) {
    transition-delay: 0.3s;
  }
  header .nav-overlay.active .nav-overlay__item:nth-child(4) {
    transition-delay: 0.4s;
  }
  header .nav-overlay__link {
    display: inline-block;
    padding: 20px;
    color: #333;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s;
  }
  header .nav-overlay__link:hover {
    color: #4a90e2;
  }
}

.mv {
  padding: 140px 0 60px;
}
@media screen and (max-width: 1023px) {
  .mv {
    padding: 60px 0 60px;
  }
}
.mv h1 {
  text-align: center;
}
.mv h1 img {
  /* height: 615px; */
  height: 445px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .mv h1 img {
    height: auto;
  }
}

.logo-slider {
  padding: 30px 0;
}
.logo-slider li {
  margin: 0 20px; /* ここで左右の間隔を調整します */
  list-style: none;
}
.logo-slider li img {
  height: 30px;
}

/**/
.scroll-logos {
  width: 100vw;
  height: 90px;
  background: #fff;
  overflow: hidden;
}

.scroll-parent {
  position: relative;
  width: 100vw;
  height: 90px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.scroll-element {
  display: flex;
  animation: logo-scroll 40s linear infinite;
}

.scroll-element ul {
  display: flex;
  width: max-content;
  padding: 0;
  margin: 0;
}

.scroll-element li {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0 20px;
  height: 100%;
}

.scroll-element img {
  height: 30px;
  /* height: auto; */
  width: auto;
  display: block;
}

@keyframes logo-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/**/

.application-link {
  text-align: center;
}
.application-link p {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 400px) {
  .application-link p {
    font-size: 20px;
  }
}
.application-link a {
  font-size: 25px;
}
@media screen and (max-width: 400px) {
  .application-link a {
    font-size: 20px;
  }
}

.concept h4 {
  width: 900px;
  margin: 0 auto;
  max-width: 100%;
}
.concept h4 img {
  width: 100%;
}
.concept p {
  text-align: center;
  margin-top: 20px;
}

.overview p {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  margin: 0 auto 30px;
  padding: 15px 5px;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: #333 solid 1px;
  border-top: #333 solid 1px;
}
@media screen and (max-width: 725px) {
  .overview p {
    font-size: 25px;
  }
}
@media screen and (max-width: 600px) {
  .overview p {
    font-size: 22px;
  }
}
@media screen and (max-width: 500px) {
  .overview p {
    font-size: 20px;
  }
}
.overview ul {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0px auto 0;
}
.overview ul li {
  list-style: none;
  display: flex;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: bold;
  align-items: stretch;
  gap: 30px;
}
@media screen and (max-width: 1023px) {
  .overview ul li {
    font-size: 18px;
    gap: 24px;
  }
}
.overview ul li .label {
  background-color: #0076bf;
  font-family: "Roboto", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 10px;
  color: #fff;
  min-width: 130px;
  max-width: 260px;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center; /* 垂直方向の中央揃え */
}
@media screen and (max-width: 500px) {
  .overview ul li .label {
    min-width: 90px;
    padding: 3px 5px;
    gap: 10px;
    max-width: 150px;
    width: 100%;
  }
}
.overview ul li:nth-child(2) .label {
  background-color: #bf8c00;
}
.overview ul li:nth-child(3) .label {
  background-color: #bf0033;
}
.overview ul li .data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.timetable .keyword {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  margin: 0 auto 30px;
}
@media screen and (max-width: 1270px) {
  .timetable .keyword {
    font-size: 25px;
  }
}
@media screen and (max-width: 1030px) {
  .timetable .keyword {
    font-size: 23px;
  }
}
@media screen and (max-width: 1023px) {
  .timetable .keyword {
    font-size: 25px;
  }
}
@media screen and (max-width: 500px) {
  .timetable .keyword {
    font-size: 22px;
  }
}
.timetable .table {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  justify-content: start;
}
.timetable .table .schedule {
  display: flex;
}
.timetable .table .schedule .time {
  display: flex;
  flex-direction: column;
  width: 110px;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
}
.timetable .table .schedule .time .start {
  position: relative;
  padding: 0 0 170px;
}
.timetable .table .schedule .time .start:after {
  content: " ";
  width: 1px;
  height: 130px;
  border: #333 0.5px solid;
  left: 50%;
  bottom: 15px;
  translate: -50% 0;
  position: absolute;
}
.timetable .table .overview-header {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: calc(100% - 110px);
}
.timetable .table .overview-header .overview-box {
  padding: 10px;
  text-align: center;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 25px;
  font-weight: bold;
}
.timetable .table .overview-header .day1 {
  background-color: #0076bf;
}
.timetable .table .overview-header .day2 {
  background-color: #bf8c00;
}
.timetable .table .overview-header .day3 {
  background-color: #bf0033;
}
.timetable .table .program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  width: calc(100% - 110px);
}
.timetable .table .program-grid .program-box {
  display: flex;
  flex-direction: column;
  padding: 20px;
  /* 背景色の設定 */
}
.timetable .table .program-grid .program-box.day1-color {
  background-color: #e6f0f8;
}
.timetable .table .program-grid .program-box.day2-color {
  background-color: #f7f3ed;
}
.timetable .table .program-grid .program-box.day3-color {
  background-color: #f9eef1;
}
.timetable .table .program-grid .program-box.pause-color {
  background-color: #e3e3e3;
}
.timetable .table .program-grid .program-box .program-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.timetable .table .program-grid .program-box .program-header .category {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  padding: 5px 10px;
  align-self: flex-start;
  color: #fff;
  background-color: #333;
}
.timetable .table .program-grid .program-box .program-header .title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}
.timetable .table .program-grid .program-box .speakers-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  align-items: flex-start;
  flex-grow: 1;
  justify-content: space-between;
}
.timetable .table .program-grid .program-box .speakers-container .speaker-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: calc((100% - 30px) / 2);
}
.timetable
  .table
  .program-grid
  .program-box
  .speakers-container
  .speaker-item
  .speaker-logo,
.timetable
  .table
  .program-grid
  .program-box
  .speakers-container
  .speaker-item
  .speaker-photo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.timetable
  .table
  .program-grid
  .program-box
  .speakers-container
  .speaker-item
  .speaker-logo
  img,
.timetable
  .table
  .program-grid
  .program-box
  .speakers-container
  .speaker-item
  .speaker-photo
  img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  display: block;
}
.timetable
  .table
  .program-grid
  .program-box
  .speakers-container
  .speaker-item
  .speaker-photo {
  margin-bottom: 0px;
}
.timetable .table_1 .title {
  min-height: 54px;
}
.timetable .table_2 .title {
  min-height: 81px;
}
@media screen and (max-width: 1170px) {
  .timetable .table_2 .title {
    min-height: 108px;
  }
}
.timetable .table_3 .title {
  min-height: 81px;
}
@media screen and (max-width: 1040px) {
  .timetable .table_3 .title {
    min-height: 108px;
  }
}
.timetable .table_4 .title {
  min-height: 135px;
}
@media screen and (max-width: 1170px) {
  .timetable .table_4 .title {
    min-height: 162px;
  }
}
@media screen and (max-width: 1040px) {
  .timetable .table_4 .title {
    min-height: 189px;
  }
}
.timetable .table_5 .title {
  min-height: 54px;
}
.timetable .table_7 .title {
  min-height: 81px;
}
@media screen and (max-width: 1220px) {
  .timetable .table_7 .title {
    min-height: 108px;
  }
}
@media screen and (max-width: 1060px) {
  .timetable .table_7 .title {
    min-height: 135px;
  }
}
.timetable .table_8 .title {
  min-height: 108px;
}
.timetable .table_9 .title {
  min-height: 108px;
}
@media screen and (max-width: 1220px) {
  .timetable .table_9 .title {
    min-height: 135px;
  }
}
@media screen and (max-width: 1030px) {
  .timetable .table_9 .title {
    min-height: 162px;
  }
}
.timetable .table_10 .title {
  min-height: 81px;
}
.timetable .list {
  margin-bottom: 40px;
}
.timetable .list dt {
  padding: 10px;
  text-align: center;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 10px;
}
.timetable .list .day1 {
  background-color: #0076bf;
}
.timetable .list .day2 {
  background-color: #bf8c00;
}
.timetable .list .day3 {
  background-color: #bf0033;
}
.timetable .list dd {
  padding: 20px;
  margin-bottom: 10px;
}
.timetable .list dd .time {
  font-size: 18px;
  margin-bottom: 5px;
}
.timetable .list dd .category {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  padding: 5px 10px;
  color: #fff;
  background-color: #333;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 3px;
  display: block;
  width: 90px;
  text-align: center;
}
.timetable .list dd p {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
.timetable .list dd .speakers-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  align-items: flex-start;
  flex-grow: 1;
  justify-content: center;
}
@media screen and (max-width: 700px) {
  .timetable .list dd .speakers-container {
    gap: 50px;
  }
}
@media screen and (max-width: 600px) {
  .timetable .list dd .speakers-container {
    justify-content: start;
  }
}
.timetable .list dd .speakers-container .speaker-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: calc((100% - 50px) / 3);
}
@media screen and (max-width: 600px) {
  .timetable .list dd .speakers-container .speaker-item {
    width: calc((100% - 50px) / 2);
  }
}
.timetable .list dd .speakers-container .speaker-item .speaker-logo,
.timetable .list dd .speakers-container .speaker-item .speaker-photo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
}
.timetable .list dd .speakers-container .speaker-item .speaker-logo img,
.timetable .list dd .speakers-container .speaker-item .speaker-photo img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  display: block;
}
.timetable .list dd .speakers-container .speaker-item .speaker-photo {
  margin-bottom: 0px;
}
.timetable .list .day1-color {
  background-color: #e6f0f8;
}
.timetable .list .day2-color {
  background-color: #f7f3ed;
}
.timetable .list .day3-color {
  background-color: #f9eef1;
}
.timetable .list .pause-color {
  background-color: #e3e3e3;
}

.speakers ul {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  gap: 50px;
  width: 100%;
}
@media screen and (max-width: 725px) {
  .speakers ul {
    gap: 0px;
    justify-content: space-between;
  }
}
.speakers ul li {
  list-style: none;
  width: 200px;
  margin-bottom: 30px;
}
@media screen and (max-width: 725px) {
  .speakers ul li {
    width: 300px;
  }
}
@media screen and (max-width: 675px) {
  .speakers ul li {
    width: calc((100% - 20px) / 2);
  }
}
.speakers ul li img {
  width: 150px;
  display: block;
  margin: 0 auto 10px;
}
.speakers ul li .name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}
.speakers ul li .company_name {
  font-size: 18px;
  font-weight: 600;
  line-height: 1em;
  margin-bottom: 5px;
}
.speakers ul li .post {
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  margin-bottom: 10px;
}
.speakers ul li .career-text {
  overflow: hidden;
  max-height: 2.5rem;
  font-size: 14px;
  transition: max-height 0.5s ease-in-out;
}
.speakers ul li .career-text.expanded {
  max-height: 999px;
  height: auto;
}
.speakers ul li .speaker-more {
  cursor: pointer;
  display: flex;
  gap: 10px;
  justify-content: end;
  align-items: center;
  margin-top: 15px;
}
.speakers ul li .speaker-more .more-icon {
  position: relative;
  width: 12px;
  height: 12px;
}
.speakers ul li .speaker-more .more-icon:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: translateY(-50%) rotate(135deg);
  transition: all 0.3s;
}
.speakers ul li .speaker-more.expanded .more-icon:after {
  top: 80%;
  transform: translateY(-50%) rotate(315deg);
}

.outline .outline-list {
  padding: 0;
  margin: 40px auto 0;
  width: -moz-fit-content;
  width: fit-content;
}
.outline .outline-list .outline-contents {
  display: flex;
  align-items: flex-start;
  gap: 76px;
  align-self: stretch;
  border-bottom: 1px solid #030303;
  padding: 0 0 25px;
  margin: 0 0 25px;
}
@media screen and (max-width: 780px) {
  .outline .outline-list .outline-contents {
    flex-direction: column;
    gap: 10px;
  }
}
.outline .outline-list .outline-contents .label {
  min-width: 145px;
}

.privacy_policy .bg-white {
  background-color: #fff;
  padding: 60px 0 60px;
}
.privacy_policy .bg-white p {
  text-align: center;
  margin-bottom: 20px;
}
.privacy_policy .bg-white .box {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
@media screen and (max-width: 1205px) {
  .privacy_policy .bg-white .box {
    display: block;
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.privacy_policy .bg-white ul {
  padding-left: -1em;
}
.privacy_policy .bg-white ul li {
  margin-bottom: 10px;
}
.privacy_policy .bg-white ul li .is-company {
  margin-right: 1em;
}
@media screen and (max-width: 670px) {
  .privacy_policy .bg-white ul li .is-company {
    display: block;
  }
}
.privacy_policy .bg-white ul li .is-link {
  color: #4a90e2;
  text-decoration: underline;
}
@media screen and (max-width: 670px) {
  .privacy_policy .bg-white ul li .is-link {
    display: block;
  }
}

.sponsor .sponsor-box {
  background-color: #fff;
  padding: 30px 50px;
}
@media screen and (max-width: 780px) {
  .sponsor .sponsor-box {
    padding: 30px 20px;
  }
}
.sponsor .sponsor-box ul {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .sponsor .sponsor-box ul {
    justify-content: space-around;
    gap: 20px;
  }
}
.sponsor .sponsor-box ul li {
  list-style: none;
}
@media screen and (max-width: 600px) {
  .sponsor .sponsor-box ul li {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.sponsor .sponsor-box ul li img {
  height: auto;
  max-width: 100%;
  /* max-height: 30px; */
  height: 80px;
}

.marker__text {
  /* 下部にマーカーの色をつける */
  background: linear-gradient(transparent 65%, #ffea00 0%);
  background-size: 0% 100%; /* 初期は幅0で非表示 */
  background-repeat: no-repeat;
  display: inline;
  transition: background-size 1s ease-out; /* 左から右に伸ばすアニメーション */
}

.marker.animate .marker__text {
  background-size: 100% 100%; /* 幅100%にして線を引く */
}

.fade-slide-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.6s ease;
}

.fade-slide-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.countup_list {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 35px;
  list-style: none;
}
.countup_item {
  background: url(../images/countup_item-bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 24px;
  border: 3px solid #bf8c00;
  width: 100%;
}
.countup_title {
  color: #0a223d;
  font-size: 24px;
  font-size: clamp(0.75rem, 0.24rem + 1.97vw, 1.5rem);
  display: block;
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
}
.countup_wrap {
  font-size: 24px;
  font-size: clamp(0.75rem, 0.24rem + 1.97vw, 1.5rem);
  color: #0a223d;
  text-align: center;
  font-weight: 600;
}
.countup {
  font-size: 40px;
  font-size: clamp(1.125rem, 0.19rem + 3.61vw, 2.5rem);
  color: #014fa2;
  font-weight: bold;
  margin-right: 8px;
}
@media screen and (max-width: 1023px) {
  .countup_list {
    gap: 16px;
    gap: clamp(0.5rem, 0.16rem + 1.31vw, 1rem);
  }
  .countup_item {
    padding: 16px 2px;
  }
  /* .countup_title {
    font-size: 18px;
  }
  .countup_wrap {
    font-size: 18px;
  } */
  .countup {
    margin-right: 0;
  }
}
@media screen and (max-width: 414px) {
  .countup_list {
    gap: 8px;
  }
  /* .countup_title {
    font-size: 12px;
  }
  .countup_wrap {
    font-size: 12px;
  }
  .countup {
    font-size: 18px;
  } */
}

.color--blue {
  color: #0076bf;
}
.color--yellow {
  color: #bf8c00;
}
.color--red {
  color: #bf0033;
}
/* .slick-track {
  display: flex !important;
  align-items: center;
} */
/*# sourceMappingURL=style.css.map */
