@charset "UTF-8";
/* visit.css - 来場者向けページ専用スタイル */
/* exhibitors.cssと同じ色合い・フォントを使用 */

img {
  max-width: 100%;
}

main * {
  box-sizing: border-box;
}

/* ファーストビュー */
.fv {
  background: #FFF2E1;
  padding: 60px 0px;
  position: relative;
}

@media (min-width: 600px) {
  .fv {
    padding: 80px 0px;
  }
}

.fv img {
  position: absolute;
  bottom: 0px;
  right: 10px;
  width: 500px;
  max-width: 40%;
}

.fv .inner {
  width: 1200px;
  max-width: 96%;
  margin: 0 auto;
}

.fv .inner p {
  font-weight: bold;
}

.fv .inner h1 {
  color: #EA7022;
}

/* ナビゲーション */
.nav-wrapper {
  width: 100%;
  background-color: #EA7022;
  padding: 30px 0;
}

.nav-wrapper .nav-container {
  max-width: 1200px;
  width: 98%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

@media (max-width: 1024px) {
  .nav-wrapper .nav-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.nav-wrapper .nav-container .nav-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
}

.nav-wrapper .nav-container .nav-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-wrapper .nav-container .nav-item .arrow-icon {
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  margin-bottom: 3px;
}

@media (max-width: 600px) {
  .nav-wrapper .nav-container .nav-item {
    padding: 12px 15px;
    font-size: 14px;
  }
}

/* 来場メリットセクション */
.ex-merit {
  padding-bottom: 80px;
}


.ex-merit .wrapper {
  width: 1200px;
  max-width: 96%;
  margin: 0 auto;
}

.ex-merit .merit__title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0px;
  line-height: 1.2;
}

@media (min-width: 600px) {
  .ex-merit .merit__title {
    font-size: 2.8rem;
  }
}

.ex-merit .merit__title .merit__title--num {
  font-size: 5.7rem;
}

.ex-merit .merit__title--under {
  color: #E5A33B;
  font-size: 1.8rem;
  text-align: center;
  margin: 0px 0px 40px 0px;
  font-weight: 500;
}

@media (min-width: 600px) {
  .ex-merit .merit__title--under {
    font-size: 2.2rem;
  }
}

.ex-merit .merit__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .ex-merit .merit__list {
    display: block;
  }
}

.ex-merit .merit__list .merit__item {
  flex-basis: 30%;
}

@media screen and (max-width: 767px) {
  .ex-merit .merit__list .merit__item {
    flex-basis: 47.5%;
    margin-bottom: 40px;
  }
}

.ex-merit .merit__list .merit__item .merit__head {
  color: #EA7022;
  text-align: center;
  border-radius: 10px;
  background-color: #FFF2E1;
  font-size: 2.4rem;
  line-height: 1.458;
  padding: 3rem 1rem;
  position: relative;
  bottom: -10px;
}

@media screen and (max-width: 991px) {
  .ex-merit .merit__list .merit__item .merit__head {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .ex-merit .merit__list .merit__item .merit__head {
    font-size: 1.8rem;
  }
}

.ex-merit .merit__list .merit__item .merit__head .merit__label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -40px;
}

@media screen and (max-width: 767px) {
  .ex-merit .merit__list .merit__item .merit__head .merit__label {
    top: -32px;
  }
}

.ex-merit .merit__list .merit__item .merit__head .merit__label span {
  padding-left: 1rem;
  vertical-align: middle;
  font-size: 5.5rem;
  color: transparent;
  -webkit-text-stroke: 1px #EA7022;
}

@media screen and (max-width: 767px) {
  .ex-merit .merit__list .merit__item .merit__head .merit__label span {
    font-size: 4.5rem;
  }
}

.ex-merit .merit__list .merit__item .merit__head .merit__name {
  margin: 5px 0;
  font-size: 2.4rem;
  font-weight: bold;
}

.ex-merit .merit__list .merit__item .merit__head .merit__headtext {
  font-size: 14px;
  text-align: center;
  color: #000;
  font-weight: 500;
}

.ex-merit .merit__list .merit__item .merit__content {
  position: relative;
}

.ex-merit .merit__list .merit__item .merit__content img {
  display: block;
  margin: 0 auto;
  height: 65px;
  width: auto;
}

.ex-merit .merit__list .merit__item .merit__content .merit__text {
  padding-top: 2rem;
}

/* 対象者セクション */
.target-section {
  padding: 60px 40px;
  background-color: #f5f5f5;
}

@media (max-width: 768px) {
  .target-section {
    padding: 40px 20px;
  }
}

.target-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.target-section .section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #E65E25;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  width: 100%;
}

@media (min-width: 600px) {
  .target-section .section-title {
    font-size: 2.8rem;
  }
}

.target-section .section-title span {
  border-bottom: 3px solid #E65E25;
  padding-bottom: 10px;
}

.target-section .intro-text {
  text-align: center;
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.target-section .target-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 900px) {
  .target-section .target-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .target-section .target-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.target-section .target-item {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.target-section .target-item .target-icon {
  margin-bottom: 15px;
}

.target-section .target-item .target-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.target-section .target-item h3 {
  font-size: 18px;
  font-weight: bold;
  color: #EA7022;
  margin-bottom: 10px;
}

.target-section .target-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* 開催概要セクション */
.about-section {
  padding: 60px 40px;
}

@media (max-width: 768px) {
  .about-section {
    padding: 40px 20px;
  }
}

.about-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.about-section .section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #E65E25;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  width: 100%;
}

@media (min-width: 600px) {
  .about-section .section-title {
    font-size: 2.8rem;
  }
}

.about-section .section-title span {
  border-bottom: 3px solid #E65E25;
  padding-bottom: 10px;
}

.about-section .about-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .about-section .about-card {
    padding: 20px;
  }
}

.about-section .about-table {
  width: 100%;
  border-collapse: collapse;
}

.about-section .about-table tr {
  border-bottom: 1px solid #eee;
}

.about-section .about-table tr:last-child {
  border-bottom: none;
}

.about-section .about-table th,
.about-section .about-table td {
  padding: 20px 15px;
  vertical-align: top;
  text-align: left;
}

.about-section .about-table th {
  width: 150px;
  font-weight: bold;
  color: #EA7022;
  background-color: #FFF9F5;
}

@media (max-width: 600px) {
  .about-section .about-table th {
    width: 100px;
    padding: 15px 10px;
    font-size: 14px;
  }

  .about-section .about-table td {
    padding: 15px 10px;
    font-size: 14px;
  }
}

.about-section .about-table td small {
  font-size: 12px;
  color: #777;
}

.about-section .about-table .highlight {
  font-size: 18px;
  font-weight: bold;
  color: #EA7022;
}

@media (max-width: 600px) {
  .about-section .about-table .highlight {
    font-size: 16px;
  }
}

.about-section .about-table .free-badge {
  display: inline-block;
  background-color: #E65E25;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
}

/* 来場登録セクション */
.register-section {
  padding: 60px 40px;
  background-color: #FFF2E1;
}

@media (max-width: 768px) {
  .register-section {
    padding: 40px 20px;
  }
}

.register-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.register-section .section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #E65E25;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  width: 100%;
}

@media (min-width: 600px) {
  .register-section .section-title {
    font-size: 2.8rem;
  }
}

.register-section .section-title span {
  border-bottom: 3px solid #E65E25;
  padding-bottom: 10px;
}

.register-section .intro-text {
  text-align: center;
  font-size: 15px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.register-section .register-cta {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .register-section .register-cta {
    padding: 30px 20px;
  }
}

.register-section .register-note {
  margin-bottom: 30px;
}

.register-section .register-note .coming-soon {
  color: #E65E25;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.register-section .register-note p {
  color: #555;
  line-height: 1.8;
}

/* CTAボタン（共通） */
.btn-wrapper-main {
  text-align: center;
}

.btn-wrapper-main.center {
  display: flex;
  justify-content: center;
}

.btn-apply.circle {
  display: inline-block;
  background-color: #EA7022;
  color: #fff;
  text-decoration: none;
  padding: 18px 50px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-apply.circle:hover {
  background-color: #d56519;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(234, 112, 34, 0.3);
}

/* お問い合わせボックス */
.contact-info-box {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-info-box .contact-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

.contact-info-box .contact-org-name {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #EA7022;
}

.contact-info-box .contact-address {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-info-box .contact-details {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-info-box .contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
}

.contact-info-box .contact-item .icon-svg {
  width: 20px;
  height: 20px;
  fill: #EA7022;
}

/* ユーティリティ */
.orange {
  color: #EA7022;
}

.bold {
  font-weight: bold;
}

.jost {
  font-family: "Jost", sans-serif;
}

button {
  background-color: transparent;
  background-image: none;
  cursor: pointer;
}

/* ----------------------------------------------------------- */

.hero-bg {
  background-color: #0f172a;
  /* Fallback */
  background-image: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('https://images.unsplash.com/photo-1551818255-e6e10975bc17?q=80&w=2573&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}

.clip-slant {
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

/* Custom Orange Gradient for Buttons */
.btn-primary {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(234, 88, 12, 0.3);
}

/* Container utility override for 1200px max-width */
.container-custom,
.container_visit {
  max-width: 1200px;
  width: 96%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (max-width: 768px) {

  .container-custom,
  .container_visit {
    width: 94%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

/* Tab Transitions */
.tab-content {
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}

.hidden-content {
  display: none !important;
  opacity: 0;
}

.tab-content.fade-out {
  opacity: 0;
}

/* Tailwindセクション用の文字サイズ修正 */
/* Solutions & Exhibitions セクション */
.container-custom h3 {
  font-size: 2.4rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .container-custom h3 {
    font-size: 2rem;
  }
}

.container-custom h4 {
  font-size: 2.4rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .container-custom h4 {
    font-size: 1.8rem;
  }
}

.container-custom h5 {
  font-size: 1.6rem;
  line-height: 1.4;
}

.container-custom p {
  font-size: 1.5rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .container-custom p {
    font-size: 1.4rem;
  }
}

.container-custom span {
  font-size: 1.4rem;
}

.container-custom li span {
  font-size: 1.5rem;
  line-height: 1.4em;
}

@media (max-width: 768px) {
  .container-custom li span {
    font-size: 1.4rem;
  }
}

/* タブボタンの文字サイズ */
.tab-btn {
  font-size: 18px !important;
}

@media (max-width: 768px) {
  .tab-btn {
    font-size: 14px !important;
  }
}

/* タブコンテンツエリアの横幅を1200pxに */
.container-custom .tw-max-w-5xl {
  max-width: 1200px;
  width: 100%;
}

/* merit-section copied from exhibitors.css */
.merit-section {
  padding: 60px 40px;
  background-color: #f5f5f5;
}

@media (max-width: 768px) {
  .merit-section {
    padding: 40px 20px;
  }
}

.merit-section .inner {
  width: 1200px;
  max-width: 96%;
  margin: 0 auto;
}

.merit-section .section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #E65E25;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  width: 100%;
}

@media (min-width: 600px) {
  .merit-section .section-title {
    font-size: 2.8rem;
  }
}

.merit-section .section-title span {
  border-bottom: 3px solid #E65E25;
  padding-bottom: 10px;
}

.merit-section .intro-text {
  text-align: center;
  font-size: 15px;
  margin-bottom: 60px;
  line-height: 1.8;
}

.merit-section .features-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

@media (max-width: 900px) {
  .merit-section .features-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .merit-section .features-grid {
    flex-direction: column;
    gap: 40px;
  }
}

.merit-section .features-grid .feature-item {
  width: 48%;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .merit-section .features-grid .feature-item {
    width: 100%;
  }
}

.merit-section .features-grid .feature-item .feature-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}

.merit-section .features-grid .feature-item .feature-header h3 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
}

.merit-section .features-grid .feature-item .feature-header img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.merit-section .features-grid .feature-item p {
  font-size: 14px;
  text-align: justify;
  color: #555;
}

.merit-section .stats-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 80px;
}

@media (max-width: 900px) {
  .merit-section .stats-container {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .merit-section .stats-container {
    flex-direction: column;
    gap: 40px;
  }
}

.merit-section .stats-container .stats-group {
  width: 49%;
}

@media (max-width: 768px) {
  .merit-section .stats-container .stats-group {
    width: 100%;
  }
}

.merit-section .stats-container .stats-group .group-header {
  color: #fff;
  text-align: center;
  padding: 12px;
  font-weight: bold;
  font-size: 18px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.merit-section .stats-container .stats-group.orange .group-header {
  background-color: #E65E25;
}

.merit-section .stats-container .stats-group.orange .oswald,
.merit-section .stats-container .stats-group.orange .unit {
  color: #E65E25;
}

.merit-section .stats-container .stats-group.blue .group-header {
  background-color: #184A9A;
}

.merit-section .stats-container .stats-group.blue .oswald,
.merit-section .stats-container .stats-group.blue .unit {
  color: #184A9A;
}

.merit-section .stats-container .stats-group.blue .sub-text {
  position: absolute;
  bottom: 5px;
  right: 15px;
  display: block;
  font-size: 10px;
  text-align: right;
  width: 100%;
  margin-top: 5px;
  color: #777;
}

.merit-section .stats-container .stats-group .boxes-row {
  display: flex;
  gap: 20px;
}

.merit-section .stats-container .stats-group .stat-box {
  background-color: #fff;
  border-radius: 15px;
  padding: 20px 10px;
  width: 100%;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  position: relative;
}

.merit-section .stats-container .stats-group .stat-box.two-column {
  flex-direction: row;
}

.merit-section .stats-container .stats-group .stat-box.two-column .twobox {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .merit-section .stats-container .stats-group .stat-box.two-column .twobox div .oswald {
    font-size: 36px;
  }
}

.merit-section .stats-container .stats-group .stat-box .label {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

.merit-section .stats-container .stats-group .stat-box .value {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.merit-section .stats-container .stats-group .stat-box .oswald {
  font-family: "Oswald", sans-serif;
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
}

@media (max-width: 900px) {
  .merit-section .stats-container .stats-group .stat-box .oswald {
    font-size: 36px;
  }
}

.merit-section .stats-container .stats-group .stat-box .unit {
  font-size: 16px;
  font-weight: bold;
}

.merit-section .past-results {
  text-align: center;
}

.merit-section .past-results h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 30px;
}

.merit-section .past-results h3 p {
  font-size: 16px;
  color: #E5A33B;
}

.merit-section .past-results .results-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  gap: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 900px) {
  .merit-section .past-results .results-card {
    padding: 20px;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .merit-section .past-results .results-card {
    flex-direction: column;
  }
}

.merit-section .past-results .results-card .left-panel {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 768px) {
  .merit-section .past-results .results-card .left-panel {
    width: 100%;
  }
}

.merit-section .past-results .results-card .visitors-box {
  background-color: #FEF5E7;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

@media screen and (max-width: 575px) {
  .merit-section .past-results .results-card .visitors-box {
    padding: 10px;
  }
}

.merit-section .past-results .results-card .visitors-box .label-area {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 16px;
}

.merit-section .past-results .results-card .visitors-box .label-area img {
  width: 30px;
  margin-right: 10px;
}

.merit-section .past-results .results-card .visitors-box .value-area {
  text-align: right;
}

.merit-section .past-results .results-card .visitors-box .value-area .sub {
  font-size: 12px;
  display: block;
}

.merit-section .past-results .results-card .visitors-box .value-area .oswald {
  color: #E65E25;
  font-size: 42px;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  font-weight: 700;
}

@media (max-width: 900px) {
  .merit-section .past-results .results-card .visitors-box .value-area .oswald {
    font-size: 32px;
  }
}

.merit-section .past-results .results-card .visitors-box .value-area .unit {
  color: #E65E25;
  font-weight: bold;
}

.merit-section .past-results .results-card .visitors-box .value-area .note {
  display: block;
  font-size: 10px;
  text-align: right;
  margin-top: 5px;
}

.merit-section .past-results .results-card .small-boxes-row {
  display: flex;
  gap: 20px;
}

.merit-section .past-results .results-card .small-box {
  background-color: #FEF5E7;
  border-radius: 15px;
  padding: 60px 10px;
  width: 50%;
  text-align: center;
}

.merit-section .past-results .results-card .small-box .label {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
}

.merit-section .past-results .results-card .small-box .oswald {
  color: #E65E25;
  font-size: 40px;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  font-weight: 700;
}

.merit-section .past-results .results-card .small-box .unit {
  color: #E65E25;
  font-weight: bold;
}

.merit-section .past-results .results-card .footer-notes {
  text-align: left;
  font-size: 10px;
  color: #333;
  margin-top: 10px;
  line-height: 1.4;
}

.merit-section .past-results .results-card .right-image {
  width: 55%;
  background-color: #ccc;
  border-radius: 5px;
  overflow: hidden;
  min-height: 300px;
}

@media (max-width: 768px) {
  .merit-section .past-results .results-card .right-image {
    width: 100%;
    min-height: 200px;
  }
}

.merit-section .past-results .results-card .right-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.merit-section .ex_cta {
  background: #fff;
}

/* Parallax Background for Solutions Section (ここを追加しました) */
.parallax-bg {
  /* Business meeting image with white overlay */
  background-image: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2000&auto=format&fit=crop');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Tab Transitions */
.tab-content {
  transition: opacity 0.3s ease-in-out;
}

.hidden-content {
  display: none;
  opacity: 0;
}

/* Balloon Tail for Problem List */
.balloon-left::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 8px solid #f1f5f9;
  /* slate-100 */
}

span.tw-text-lg {
  font-size: 2.3rem;
}

span.tw-text-2xl {
  font-size: 3.2rem;
}

.problem-section h2 {
  font-size: 28px;
}

.problem-section p.header-sub {
  color: #E5A33B;
  font-size: 2.2rem;
  font-weight: 500;
}

.container-custom p.tw-text-xl {
  font-size: 2.8rem;
}

.container-custom p.tw-text-lg {
  font-size: 2rem;
}

.problem-section .container-custom,
#solution, #joint {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 575px) {
  .problem-section .container-custom,
#solution, #joint {
  padding-top: 60px;
  padding-bottom: 60px;
}
}
@media (max-width: 575px) {
.problem-section .container-custom .tw-gap-8 {
gap:5rem;
}
}

#solution h2,
#joint h2 {
  font-size: 28px;
  line-height: 3.2rem;
}

#joint {
  background-color: #FFF2E1;
}

.register-cta a.mailmg_btn {
  background: #3B75A7;
}

.round-img {
  border-radius: 10px;
}

#problem span.tw-text-2xl {
  line-height: 3rem;

}
#problem h2.tw-text-3xl {
  line-height: 3rem;
}
@media (max-width: 575px) {
h3.visit_voice_ttl {
margin-bottom: 30px;
}
}