@charset "UTF-8";
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 1;
  transition: opacity 0.8s ease-out;
}
.loading.loaded {
  opacity: 0;
  pointer-events: none;
}
.loading__spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(26, 0, 82, 0.2);
  border-top: 4px solid #1A0052;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #000;
  -webkit-text-size-adjust: 100%;
}

a {
  text-decoration: none;
  color: #000;
  font-weight: 700;
}
a:hover {
  text-decoration: underline;
}

.pc {
  display: inline;
}

.sp {
  display: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #FFFFFF;
  overflow-x: hidden;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.8s forwards;
  font-size: 16px; /* ベースサイズ */
  font-size: 1rem; /* レスポンシブ対応 */
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 0;
  z-index: 10002;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__logo {
  display: block;
  height: 50px;
}
.header__logo img {
  height: 100%;
  width: auto;
}
.header__menu {
  position: relative;
  width: 46px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 40px;
  margin-top: 10px;
  z-index: 10001;
}
.header__menu span {
  display: block;
  width: 100%;
  height: 4px;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
}
.header__menu span:nth-child(1) {
  transform-origin: center;
}
.header__menu span:nth-child(2) {
  opacity: 1;
}
.header__menu span:nth-child(3) {
  transform-origin: center;
}
.header__menu.active span {
  background-color: #020062;
}
.header__menu.active span:nth-child(1) {
  transform: translateY(13px) rotate(45deg);
}
.header__menu.active span:nth-child(2) {
  opacity: 0;
}
.header__menu.active span:nth-child(3) {
  transform: translateY(-13px) rotate(-45deg);
}
.header__entry {
  background-color: #FF5A2C;
  padding: 15px 30px;
  text-decoration: none;
  color: #FFFFFF;
  border-radius: 0;
  text-align: center;
  transition: all 0.3s ease;
  margin-right: 0;
}
.header__entry:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.header__entry-main {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: #fff;
}
.header__entry-sub {
  display: block;
  font-size: 12px;
  margin-top: 2px;
  font-weight: 400;
  color: #fff;
}

.hero {
  position: relative;
  min-height: 512px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #1A0052;
}
.hero h2 {
  position: absolute;
  z-index: 1;
  top: 84px;
  left: 67px;
}
.hero h2 img {
  width: 510px;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  background-color: #D4AF37;
  z-index: 1;
}

.intro {
  padding: 60px 0;
}
.intro__content {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.intro__text {
  font-size: 16px;
  line-height: 2;
  color: #02005E;
  font-weight: 700;
}

.image-slider {
  padding: 0 0 60px;
  overflow: hidden;
}
.image-slider__container {
  width: 100%;
}
.image-slider__track {
  display: flex;
}
.image-slider__track.slick-slider .slick-track {
  display: flex;
  align-items: center;
}
.image-slider__item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.introWrap {
  background: url(../images/about/bg.jpg) no-repeat;
  background-size: cover;
}

.about {
  position: relative;
  padding: 0 0 80px;
  overflow: hidden;
}
.about__content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
.about__title {
  text-align: center;
  margin-bottom: 60px;
}
.about__title-ja {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #02005E;
  margin-bottom: 10px;
}
.about__title-en {
  display: block;
  font-size: 48px;
  font-weight: 900;
  color: #02005E;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: -0.02em;
}
.about__text {
  font-size: 18px;
  line-height: 2;
  color: #02005E;
  text-align: justify;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.exhibitor-recruitment {
  position: relative;
  padding: 150px 0 0;
  background-color: #030357;
  overflow: hidden;
  background-image: url("../images/guide/bg.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
}
.exhibitor-recruitment__header {
  text-align: center;
  margin-bottom: 150px;
  position: relative;
  z-index: 1;
}
.exhibitor-recruitment__title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.75;
  margin-bottom: 60px;
  color: #fff;
}
.exhibitor-recruitment__title span {
  font-size: 40px;
  color: #fff;
}
.exhibitor-recruitment__note {
  font-size: 18px;
  line-height: 2;
  text-align: left;
  color: #fff;
}

.recruitment-table {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 60px;
  margin-bottom: 80px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.recruitment-table__title {
  text-align: left;
  margin-bottom: 40px;
}
.recruitment-table__title-en {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: #02005E;
  margin-bottom: 8px;
  font-family: "Noto Sans JP", sans-serif;
}
.recruitment-table__title-ja {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #02005E;
}
.recruitment-table__content {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
}
.recruitment-table__content th, .recruitment-table__content td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid #E5E5E5;
}
.recruitment-table__content th {
  width: 25%;
  background-color: #FFFFFF;
  color: #000000;
  font-weight: 700;
  padding-left: 0;
  vertical-align: top;
}
.recruitment-table__content td {
  color: #333333;
  line-height: 1.8;
}
.recruitment-table__content tr:last-child th,
.recruitment-table__content tr:last-child td {
  border-bottom: none;
}

.info-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 60px 0;
  margin-bottom: 60px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.info-card__title {
  text-align: left;
  margin-bottom: 40px;
  padding: 0 65px;
}
.info-card__title-en {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: #02005E;
  margin-bottom: 8px;
  font-family: "Noto Sans JP", sans-serif;
}
.info-card__title-ja {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #02005E;
}
.info-card__content {
  border-top: 1px solid #E5E5E5;
  margin: 0 60px;
}
.info-card__content p {
  color: #333333;
  line-height: 2;
  padding: 20px 65px;
  font-size: 16px;
  border-bottom: 1px solid #E5E5E5;
  margin: 0;
}

.selection-section {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 60px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.selection-section__title {
  text-align: left;
  margin-bottom: 40px;
}
.selection-section__title-en {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: #02005E;
  margin-bottom: 8px;
  font-family: "Noto Sans JP", sans-serif;
}
.selection-section__title-ja {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #02005E;
}
.selection-section__content p {
  color: #333333;
  line-height: 2;
  margin-bottom: 40px;
  font-size: 16px;
}
.selection-section__content h4 {
  font-size: 21px;
  font-weight: 700;
}
.selection-section__criteria {
  margin-top: 30px;
}
.selection-section__criteria.mt20 {
  margin-top: 20px;
}
.selection-section__criteria table {
  width: 100%;
  border-collapse: collapse;
}
.selection-section__criteria table th, .selection-section__criteria table td {
  padding: 0 30px;
  text-align: center;
  vertical-align: middle;
}
.selection-section__criteria table th {
  color: #000000;
  font-weight: 700;
  font-size: 16px;
  width: 15%;
  padding: 0;
  position: relative;
}
.selection-section__criteria table th span {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ECEFF4;
  box-sizing: border-box;
  height: calc(100% - 40px);
  flex-wrap: wrap;
}
.selection-section__criteria table th b {
  font-size: 14px;
  display: inline;
  margin-top: -1em;
}
.selection-section__criteria table td {
  color: #000000;
  line-height: 1.6;
  font-size: 14px;
  text-align: left;
  background-color: #FFFFFF;
}
.selection-section__criteria table td span {
  display: inline-block;
  border-left: 1px solid #D0D0D0;
  padding-left: 10px;
  width: 100%;
}
.selection-section__criteria table td.nonPad {
  padding: 0;
}
.selection-section__criteria table td.nonPad span {
  padding: 0 30px;
  margin: 20px 0;
  display: inline-block;
}
.selection-section__criteria table td.pdBot {
  margin-bottom: 20px;
}
.selection-section__criteria table td:first-of-type {
  width: 25%;
  text-align: left;
}
.selection-section__criteria table tr.border {
  position: relative;
  border-bottom: 1px solid #D0D0D0;
}
.selection-section__criteria table tr.border.break::after {
  content: "";
  width: 20px;
  height: 2px;
  position: absolute;
  bottom: -2px;
  background: #fff;
  left: 15%;
  z-index: 2;
}
.selection-section__criteria table tr:first-child {
  border-bottom: 1px solid #D0D0D0;
}

.cta-section {
  background-color: #030357;
  padding: 110px 0 160px;
  text-align: center;
}
.cta-section__content {
  max-width: 600px;
  margin: 0 auto;
}
.cta-section__caution {
  font-size: 14px;
  text-align: left;
  max-width: 600px;
  color: #fff;
  line-height: 1.8;
  margin: 0 auto 60px;
}
.cta-section__text {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.8;
  margin-bottom: 40px;
}
.cta-section__button {
  display: inline-block;
  background-color: #FF5A2C;
  padding: 15px 130px;
  text-decoration: none;
  border-radius: 0;
  transition: all 0.3s ease;
  color: #FFFFFF;
}
.cta-section__button:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.cta-section__button-main {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 0.05em;
}
.cta-section__button-sub {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin-top: 5px;
}

.contact-section {
  background-color: #D9E0E8;
  padding: 160px 130px 30px;
}
.contact-section__wrapper {
  max-width: 1030px;
  margin: 0 auto;
}
.contact-section__title {
  margin-bottom: 60px;
}
.contact-section__title-en {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: #02005E;
  margin-bottom: 8px;
}
.contact-section__title-ja {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #02005E;
}
.contact-section__content {
  display: flex;
  gap: 30px;
  margin-bottom: 80px;
  text-align: left;
}
.contact-section__info {
  text-align: left;
}
.contact-section__info h3 {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  line-height: 1.8;
  margin-bottom: 20px;
}
.contact-section__tel {
  font-size: 30px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}
.contact-section__email {
  font-weight: 700;
  color: #000000;
}
.contact-section__url {
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
}
.contact-section__links {
  border-left: 1px solid #C0C0C0;
  padding-left: 30px;
  text-align: left;
}
.contact-section__links h3 {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  line-height: 1.8;
}
.contact-section__note {
  font-size: 14px;
  color: #000000;
  line-height: 1.8;
}
.contact-section__footer-links {
  text-align: left;
  padding-top: 40px;
}
.contact-section__footer-links a {
  text-decoration: none;
  font-size: 14px;
  padding: 0 10px;
}
.contact-section__footer-links a:first-child {
  padding-left: 0;
}
.contact-section__footer-links a:hover {
  text-decoration: underline;
}
.contact-section__footer-links span {
  color: #02005E;
  font-size: 14px;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  max-width: 416px;
  height: 100vh;
  background-color: #EFF2F5;
  transition: left 0.3s ease;
  z-index: 10000;
  overflow-y: auto;
}
.mobile-nav.active {
  left: 0;
}
.mobile-nav__menu {
  padding: 160px 60px 45px;
}
.mobile-nav__item {
  display: block;
  margin-bottom: 30px;
  text-decoration: none;
}
.mobile-nav__item-ja {
  display: block;
  font-size: 20px;
  color: #020062;
  font-weight: 400;
  margin-bottom: 5px;
}
.mobile-nav__item-en {
  display: block;
  font-size: 14px;
  color: #020062;
  font-weight: 300;
}
.mobile-nav__entry-button {
  display: block;
  background-color: #E8380D;
  padding: 24px;
  text-decoration: none;
  text-align: center;
  margin-top: 90px;
  color: #fff;
}
.mobile-nav__entry-button .mobile-nav__entry-main {
  display: block;
  font-size: 24px;
  color: #FFFFFF;
  font-weight: 400;
  letter-spacing: 0.06em;
}
.mobile-nav__entry-button .mobile-nav__entry-sub {
  display: block;
  font-size: 14px;
  color: #FFFFFF;
  margin-top: 8px;
}
.mobile-nav__bottom {
  padding: 0 20px;
  text-align: center;
}
.mobile-nav__logo {
  max-width: 240px;
  height: auto;
}

body.menu-open {
  overflow: hidden;
}
body.menu-open::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.footer {
  background-color: #FFFFFF;
  text-align: center;
  padding: 45px 0 0;
}
.footer__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 120px;
  margin-bottom: 30px;
}
.footer__logo h3 {
  font-size: 24px;
  font-weight: 900;
  color: #000000;
  line-height: 1.4;
}
.footer__logo img {
  height: 60px;
  width: auto;
}
.footer__copyright {
  font-size: 12px;
  color: #666666;
  padding-bottom: 15px;
  border-bottom: 9px solid #02005E;
}

@media (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: inline;
  }
  .header {
    padding: 20px;
    height: auto;
  }
  .header__menu {
    margin-left: 0;
    margin-top: 0;
  }
  .header__right {
    display: flex;
    align-items: center;
    gap: 0;
  }
  .header__logo {
    display: block;
    height: 35px;
    margin-right: 0;
  }
  .header__logo img {
    height: 100%;
    width: auto;
  }
  .header__entry {
    display: none;
  }
  .header__entry-main {
    font-size: 16px;
  }
  .header__entry-sub {
    font-size: 10px;
  }
  .hero {
    min-height: auto;
    overflow: visible;
    padding-bottom: 260px;
    position: relative;
  }
  .hero h2 {
    position: static;
    padding: 120px 20px 0;
  }
  .hero h2 img {
    width: 100%;
  }
  .hero p {
    position: absolute;
    bottom: 60px;
    left: 20px;
    width: calc(100% - 40px);
    z-index: 2;
  }
  .hero p img {
    width: 100%;
  }
  .intro {
    padding: 60px 30px;
  }
  .intro__text {
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
  }
  .image-slider {
    padding: 0 0 50px;
  }
  .about {
    padding: 0 30px 60px;
  }
  .about__title {
    margin-bottom: 60px;
  }
  .about__title-ja {
    font-size: 18px;
  }
  .about__title-en {
    font-size: 28px;
  }
  .about__text {
    font-size: 14px;
    line-height: 1.8;
  }
  .container {
    padding: 0;
  }
  .exhibitor-recruitment {
    padding: 120px 0 0;
    background-size: auto;
  }
  .exhibitor-recruitment__header {
    margin-bottom: 120px;
  }
  .exhibitor-recruitment__title {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 60px;
    padding: 0 20px;
  }
  .exhibitor-recruitment__title span {
    font-size: 30px;
    display: block;
    margin-top: 10px;
  }
  .exhibitor-recruitment__note {
    font-size: 14px;
    padding: 0 20px;
    text-align: left;
  }
  .recruitment-table,
  .info-card,
  .selection-section {
    padding: 60px 30px;
    margin-bottom: 60px;
    border-radius: 0;
  }
  .recruitment-table__title,
  .info-card__title,
  .selection-section__title {
    margin-bottom: 30px;
  }
  .recruitment-table__title-en,
  .info-card__title-en,
  .selection-section__title-en {
    font-size: 12px;
  }
  .recruitment-table__title-ja,
  .info-card__title-ja,
  .selection-section__title-ja {
    font-size: 18px;
  }
  .recruitment-table__content th, .recruitment-table__content td {
    padding: 15px 10px;
    font-size: 12px;
  }
  .recruitment-table__content th {
    width: 30%;
  }
  .info-card__title {
    padding: 0;
  }
  .info-card__content {
    margin: 0;
  }
  .info-card__content p {
    padding: 15px 0;
    font-size: 12px;
  }
  .selection-section__content p {
    font-size: 12px;
  }
  .selection-section h4 {
    font-size: 16px;
    font-weight: 700;
  }
  .selection-section__criteria {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .selection-section__criteria table {
    min-width: 800px;
    border-top: 1px solid #D0D0D0;
    border-bottom: 1px solid #D0D0D0;
  }
  .selection-section__criteria table th, .selection-section__criteria table td {
    padding: 0 20px;
    font-size: 12px !important;
  }
  .selection-section__criteria table th b, .selection-section__criteria table td b {
    font-size: 10px !important;
    margin-top: -2em;
  }
  .selection-section__criteria table th.nonPad, .selection-section__criteria table td.nonPad {
    padding: 0;
  }
  .selection-section__criteria table th.nonPad span, .selection-section__criteria table td.nonPad span {
    font-size: 12px !important;
    padding: 0 20px;
    margin: 20px 0;
    display: block;
  }
  .selection-section__criteria table tr.border {
    position: relative;
    border-bottom: 1px solid #D0D0D0;
  }
  .selection-section__criteria table tr.border.break::after {
    content: "";
    width: 10px;
    height: 2px;
    position: absolute;
    bottom: -2px;
    background: #fff;
    left: 15%;
    z-index: 2;
  }
  .cta-section {
    padding: 20px 30px 80px;
  }
  .cta-section__text {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .cta-section__caution {
    font-size: 12px;
    text-align: left;
    line-height: 1.8;
    color: #fff;
    margin: 0 auto 60px;
  }
  .cta-section__button {
    padding: 15px 60px;
    width: 100%;
  }
  .cta-section__button-main {
    font-size: 24px;
  }
  .cta-section__button-sub {
    font-size: 14px;
  }
  .contact-section {
    padding: 80px 30px 20px;
  }
  .contact-section__title {
    margin-bottom: 40px;
  }
  .contact-section__title-en {
    font-size: 14px;
  }
  .contact-section__title-ja {
    font-size: 20px;
  }
  .contact-section__content {
    flex-direction: column;
    gap: 60px;
    margin-bottom: 80px;
  }
  .contact-section__info h3 {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .contact-section__tel {
    font-size: 20px;
  }
  .contact-section__email {
    font-size: 14px;
  }
  .contact-section__links {
    border-left: none;
    border-top: 1px solid #C0C0C0;
    padding-left: 0;
    padding-top: 60px;
  }
  .contact-section__links h3 {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .contact-section__note {
    font-size: 12px;
  }
  .contact-section__footer-links {
    padding-top: 0;
  }
  .contact-section__footer-links a {
    font-size: 12px;
    padding: 0 5px;
  }
  .footer {
    padding: 60px 0 0;
  }
  .footer__logos {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
  }
  .footer__logo img {
    height: 40px;
  }
  .footer__logo h3 {
    font-size: 18px;
  }
  .footer__copyright {
    font-size: 10px;
    padding-bottom: 10px;
  }
  .mobile-nav {
    max-width: 100%;
  }
}
body#privacy {
  background-image: url("../images/privacy/bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
body#privacy .header__menu span {
  background-color: #020062;
}

.privacy-main {
  padding-top: 160px;
  min-height: 100vh;
}

.privacy-hero {
  margin-bottom: 120px;
}
.privacy-hero .container {
  max-width: 1024px;
  margin: 0 auto;
}
.privacy-hero__title {
  color: #020062;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Noto Sans JP", sans-serif;
}
.privacy-hero__subtitle {
  font-size: 14px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

.privacy-content {
  margin-bottom: 160px;
}

.privacy-section {
  max-width: 894px;
  margin: 0 auto;
}

.privacy-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 70px;
}

.privacy-item {
  margin-bottom: 60px;
}
.privacy-item__title {
  font-size: 20px;
  font-weight: 700;
  color: #02005E;
  margin-bottom: 30px;
}
.privacy-item__text {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  padding-left: 30px;
  border-left: 1px solid #000;
}

.privacy-contact__title {
  font-size: 16px;
  font-weight: 700;
  color: #02005E;
  margin-bottom: 15px;
}
.privacy-contact__item {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 8px;
}
.privacy-contact__item a {
  color: #0066CC;
  text-decoration: none;
}
.privacy-contact__item a:hover {
  text-decoration: underline;
}

.privacy-date {
  text-align: right;
  font-size: 14px;
  color: #666666;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .privacy-main {
    padding-top: 160px;
  }
  .privacy-hero {
    margin-bottom: 60px;
    padding: 0 30px;
  }
  .privacy-hero .container {
    padding: 0;
  }
  .privacy-hero__title {
    font-size: 28px;
    margin-bottom: 5px;
  }
  .privacy-hero__subtitle {
    font-size: 12px;
  }
  .privacy-content {
    margin-bottom: 80px;
    padding: 0 30px;
  }
  .privacy-section {
    padding: 0;
  }
  .privacy-intro {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: left;
  }
  .privacy-item {
    margin-bottom: 40px;
  }
  .privacy-item__title {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .privacy-item__text {
    font-size: 14px;
    line-height: 1.8;
    padding-left: 15px;
    border-left: 1px solid #000;
  }
  .privacy-contact__title {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .privacy-contact__item {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 5px;
  }
  .privacy-date {
    font-size: 12px;
    margin-top: 20px;
  }
}

/*# sourceMappingURL=style.css.map */
