@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("./fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("./fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

:root {
  --oupute-font-family: "Montserrat", "Poppins", Arial, sans-serif;
  --oupute-color-primary: #F2821F;
  --oupute-color-primary-hover: #DA751C;
  --oupute-color-primary-active: #C26819;
  --oupute-color-quote-disabled: #F59B4C;
  --oupute-color-quote-disabled-text: #FFFFFF;
  --oupute-color-title: #222222;
  --oupute-color-text: #535862;
  --oupute-color-dark: #181D27;
  --oupute-color-light: #F9F9F9;
  --oupute-color-soft: #F3F3F3;
  --oupute-color-disabled: #EEEEEE;
  --oupute-color-disabled-text: #B0B0B0;
  --oupute-color-icon-muted: rgba(0, 0, 0, 0.08);
  --oupute-border-soft: rgba(24, 29, 39, 0.12);
  --oupute-shadow-soft: 0 20px 48px rgba(24, 29, 39, 0.12);
  --oupute-container-max: 1440px;
  --oupute-container-wide-max: 1680px;
  --oupute-container-padding: 24px;
  --oupute-page-padding: max(var(--oupute-container-padding), calc((100vw - var(--oupute-container-max)) / 2));
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1400px;
  --breakpoint-2xl: 1600px;
  --oupute-section-gap: 120px;
  --oupute-section-gap-md: 80px;
  --oupute-section-gap-sm: 56px;
  --oupute-radius-pill: 999px;
  --oupute-radius-card: 8px;
  --color-primary: var(--oupute-color-primary);
  --btn-hover: var(--oupute-color-primary-hover);
  --btn-active: var(--oupute-color-primary-active);
  --title-text-color: var(--oupute-color-title);
  --text-color: var(--oupute-color-text);
  --font-family: var(--oupute-font-family);
  --title-font-family: var(--oupute-font-family);
}

body.oupute-lock {
  overflow: hidden;
}

.oupute-inquiry-popup-scope .custom-pop-inquiry .inqury_title_box {
  box-sizing: border-box;
}

.oupute-inquiry-popup-scope .custom-pop-inquiry .inqury_title_text {
  max-width: calc(100% - 120px);
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
  overflow-wrap: anywhere;
  word-break: normal;
}

.oupute-inquiry-popup-scope .custom-pop-inquiry .cd-popup-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  line-height: 1;
}

.oupute-fancybox-video .fancybox-slide--video .fancybox-content,
.oupute-fancybox-video .fancybox-slide--iframe .fancybox-content {
  width: min(960px, 90vw);
  height: min(540px, calc(90vw * 0.5625));
  max-width: 90vw;
  max-height: 80vh;
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.oupute-fancybox-video .fancybox-content iframe,
.oupute-fancybox-video .fancybox-content video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}

@media (max-width: 768px) {
  .oupute-inquiry-popup-scope .custom-pop-inquiry .cd-popup-close {
    width: 38px;
    height: 38px;
  }

  .oupute-inquiry-popup-scope .custom-pop-inquiry .inqury_title_text {
    max-width: calc(100% - 86px);
  }

  .oupute-fancybox-video .fancybox-slide--video .fancybox-content,
  .oupute-fancybox-video .fancybox-slide--iframe .fancybox-content {
    width: 92vw;
    height: calc(92vw * 0.5625);
  }
}

.oupute-reveal-ready .oupute-reveal {
  opacity: 0;
  translate: 0 34px;
  transition:
    opacity 0.72s ease,
    translate 0.72s ease;
  transition-delay: var(--oupute-reveal-delay, 0ms);
  will-change: opacity, translate;
}

.oupute-reveal-ready .oupute-reveal.is-oupute-visible {
  opacity: 1;
  translate: 0 0;
}

@media (prefers-reduced-motion: reduce) {
  .oupute-reveal-ready .oupute-reveal,
  .oupute-reveal-ready .oupute-reveal.is-oupute-visible {
    opacity: 1;
    translate: 0 0;
    transition: none;
  }
}

.container {
  width: 100%;
  max-width: var(--oupute-container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--oupute-container-padding);
  padding-right: var(--oupute-container-padding);
  box-sizing: border-box;
}

.oupute-container,
.oupute-container-wide {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--oupute-container-padding);
  padding-right: var(--oupute-container-padding);
  box-sizing: border-box;
}

.oupute-container {
  max-width: var(--oupute-container-max);
}

.oupute-container-wide {
  max-width: var(--oupute-container-wide-max);
}

.oupute-btn,
.oupute-btn-primary,
.oupute-btn-quote,
.oupute-btn-learn,
.oupute-btn-submit,
.oupute-icon-button,
.oupute-play-button {
  box-sizing: border-box;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.24s ease,
    color 0.24s ease,
    border-color 0.24s ease,
    opacity 0.24s ease;
}

.oupute-btn,
.oupute-btn-learn {
  min-width: 200px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 25px;
  border-radius: 52px;
  font-family: var(--oupute-font-family);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.oupute-btn-learn {
  background: #FFFFFF;
  color: var(--oupute-color-primary);
}

.oupute-btn-learn:hover {
  background: var(--oupute-color-soft);
  color: var(--oupute-color-primary);
}

.oupute-btn-learn:active,
.oupute-btn-learn.is-active {
  background: var(--oupute-color-primary);
  color: #FFFFFF;
}

.oupute-btn-learn:disabled,
.oupute-btn-learn.is-disabled {
  background: var(--oupute-color-disabled);
  color: var(--oupute-color-disabled-text);
  cursor: not-allowed;
  pointer-events: none;
}

.oupute-btn-primary,
.oupute-btn-quote {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: 36px;
  background: var(--oupute-color-primary);
  color: var(--oupute-color-light);
  font-family: var(--oupute-font-family);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.oupute-btn-primary:hover,
.oupute-btn-quote:hover {
  background: var(--oupute-color-primary-hover);
  color: var(--oupute-color-light);
}

.oupute-btn-primary:active,
.oupute-btn-primary.is-active,
.oupute-btn-quote:active,
.oupute-btn-quote.is-active {
  background: var(--oupute-color-primary-active);
  color: var(--oupute-color-light);
}

.oupute-btn-primary:disabled,
.oupute-btn-primary.is-disabled,
.oupute-btn-primary[aria-disabled="true"] {
  background: var(--oupute-color-disabled);
  color: var(--oupute-color-disabled-text);
  cursor: not-allowed;
  pointer-events: none;
}

.oupute-btn-quote:disabled,
.oupute-btn-quote.is-disabled,
.oupute-btn-quote[aria-disabled="true"] {
  background: var(--oupute-color-quote-disabled);
  color: var(--oupute-color-quote-disabled-text);
  cursor: not-allowed;
  pointer-events: none;
}

.oupute-btn-submit {
  min-height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  border-radius: 74px;
  background: #FFFFFF;
  color: var(--oupute-color-title);
  font-family: var(--oupute-font-family);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.oupute-btn-submit:hover {
  background: var(--oupute-color-soft);
  color: var(--oupute-color-title);
}

.oupute-btn-submit:active,
.oupute-btn-submit.is-active {
  background: var(--oupute-color-primary);
  color: #FFFFFF;
}

.oupute-btn-submit:disabled,
.oupute-btn-submit.is-disabled {
  background: var(--oupute-color-soft);
  color: var(--oupute-color-disabled-text);
  cursor: not-allowed;
  pointer-events: none;
}

.search-page-wrap {
  padding-top: 40px !important;
}

.search-page-wrap .container .search-form-box {
  padding-top: 0;
}

.privacy-content ul,
.privacy-content ol {
  width: auto;
  max-width: 100%;
  margin: 10px 0;
  padding-left: 38px;
  text-align: left;
}

.privacy-content ul,
.privacy-content ul li {
  list-style: disc;
}

.privacy-content ol,
.privacy-content ol li {
  list-style: decimal;
}

.privacy-content li {
  margin: 0 0 10px;
}

.privacy-content li:last-child {
  margin-bottom: 0;
}

.privacy-content span[style*="font-family: Symbol"],
.privacy-content span[style*="font-family:Symbol"] {
  font-family: Arial, Helvetica, sans-serif !important;
}

.search-page-wrap .search-data-result .search-list .news .more-btn {
  box-sizing: border-box;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 36px;
  background: var(--oupute-color-primary);
  color: var(--oupute-color-light);
  font-family: var(--oupute-font-family);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color 0.24s ease,
    color 0.24s ease,
    border-color 0.24s ease,
    opacity 0.24s ease;
}

.search-page-wrap .search-data-result .search-list .news .more-btn:hover,
.search-page-wrap .search-data-result .search-list .news .more-btn:focus-visible {
  background: var(--oupute-color-primary-hover);
  color: var(--oupute-color-light);
  text-decoration: none;
}

.search-page-wrap .search-data-result .search-list .news .more-btn {
  min-width: 160px;
  padding: 16px 32px;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .search-page-wrap {
    padding-top: 24px !important;
  }
}

@media (max-width: 576px) {
  .search-page-wrap {
    padding-top: 16px !important;
  }
}

.oupute-icon-button {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--oupute-color-icon-muted);
  color: #FFFFFF;
}

.oupute-icon-button.is-inverse {
  background: #FFFFFF;
  color: var(--oupute-color-dark);
}

.oupute-icon-button.is-primary {
  background: var(--oupute-color-primary);
  color: #FFFFFF;
}

.oupute-icon-button svg {
  width: 30px;
  height: 30px;
}

.oupute-icon-button:hover {
  background: var(--oupute-color-primary);
  color: #FFFFFF;
}

.oupute-icon-button.is-primary:hover {
  background: var(--oupute-color-primary-hover);
  color: #FFFFFF;
}

.oupute-icon-button:active,
.oupute-icon-button.is-active {
  background: #FFFFFF;
  color: var(--oupute-color-dark);
}

.oupute-icon-button:disabled,
.oupute-icon-button.is-disabled {
  background: var(--oupute-color-icon-muted);
  color: #FFFFFF;
  cursor: not-allowed;
  pointer-events: none;
}

.oupute-switch-buttons {
  display: flex;
  align-items: center;
  gap: 25px;
}

.oupute-switch-button {
  box-sizing: border-box;
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--oupute-color-dark);
  font: inherit;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.24s ease,
    color 0.24s ease,
    transform 0.24s ease;
}

.oupute-switch-button svg {
  width: 30.31px;
  height: 30.31px;
}

.oupute-switch-button.is-light,
.oupute-switch-buttons.is-light .oupute-switch-button {
  background: #FFFFFF;
  color: var(--oupute-color-dark);
}

.oupute-switch-button.is-light:hover,
.oupute-switch-buttons.is-light .oupute-switch-button:hover {
  background: var(--oupute-color-soft);
  color: var(--oupute-color-dark);
}

.oupute-switch-button.is-light:active,
.oupute-switch-button.is-light.is-active,
.oupute-switch-buttons.is-light .oupute-switch-button:active,
.oupute-switch-buttons.is-light .oupute-switch-button.is-active {
  background: var(--oupute-color-soft);
  color: var(--oupute-color-primary);
}

.oupute-switch-button.is-primary,
.oupute-switch-buttons.is-primary .oupute-switch-button {
  background: var(--oupute-color-primary);
  color: #FFFFFF;
}

.oupute-switch-button.is-primary:hover,
.oupute-switch-buttons.is-primary .oupute-switch-button:hover {
  background: var(--oupute-color-primary-hover);
  color: #FFFFFF;
}

.oupute-switch-button.is-primary:active,
.oupute-switch-button.is-primary.is-active,
.oupute-switch-buttons.is-primary .oupute-switch-button:active,
.oupute-switch-buttons.is-primary .oupute-switch-button.is-active {
  background: var(--oupute-color-primary-active);
  color: #FFFFFF;
}

.oupute-switch-button.is-disabled,
.oupute-switch-button:disabled,
.oupute-switch-buttons .oupute-switch-button.is-disabled,
.oupute-switch-buttons .oupute-switch-button:disabled {
  background: var(--oupute-color-icon-muted);
  color: #FFFFFF;
  cursor: not-allowed;
  pointer-events: none;
}

.oupute-switch-buttons .oupute-switch-button.is-disabled:hover,
.oupute-switch-buttons .oupute-switch-button.is-disabled:active,
.oupute-switch-buttons .oupute-switch-button:disabled:hover,
.oupute-switch-buttons .oupute-switch-button:disabled:active {
  background: var(--oupute-color-icon-muted);
  color: #FFFFFF;
}

.oupute-play-button {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--oupute-color-primary);
  color: #FFFFFF;
}

.oupute-play-button:hover {
  background: var(--oupute-color-primary-hover);
}

.oupute-play-button:active,
.oupute-play-button.is-active {
  background: var(--oupute-color-primary-active);
}

.oupute-play-button:disabled,
.oupute-play-button.is-disabled,
.oupute-play-button[aria-disabled="true"] {
  background: #F59B4C;
  color: #FFFFFF;
  cursor: not-allowed;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  :root {
    --oupute-container-padding: 20px;
    --oupute-section-gap: var(--oupute-section-gap-md);
  }
}

@media screen and (max-width: 576px) {
  :root {
    --oupute-container-padding: 16px;
    --oupute-section-gap: var(--oupute-section-gap-sm);
  }
}
