@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Gothic+A1:100,200,300,400,500,600,700,800,900");
* {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-family: "Noto", sans-serif;
  text-decoration: none; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/*반응형 화면 크기*/
/*반응형, 브라우저 크기가 767px 이하일때*/
/*반응형, 브라우저 크기가 768이상, 1023px 이하일때*/
/*반응형, 브라우저 크기가 1024px 이상일때*/
/*넓이, 높이 자동 계산함수*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none; }

html {
  font-size: 10px; }

body {
  width: 100%;
  min-height: 100vh; }

#navbar {
  background-color: #e6e6e6; }
  #navbar nav {
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1920px;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    @media (max-width: 480px) {
      #navbar nav {
        height: 60px; } }
    #navbar nav #nav_logo {
      height: 50px;
      margin-left: 50px; }
      @media (max-width: 480px) {
        #navbar nav #nav_logo {
          height: 36px;
          margin-left: auto;
          maring-right: auto; } }
    @media (max-width: 880px) {
      #navbar nav {
        justify-content: center; } }
#mobile_btn {
  display: none; }

input[id="mobile_btn"] + label {
  display: none;
  z-index: 2000;
  position: fixed;
  top: 25px;
  left: 25px;
  width: 26px;
  height: 26px;
  background-color: rgba(230, 230, 230, 0.5);
  border-radius: 5px;
  background-size: cover;
  background-image: url("../img/mobile_btn.png"); }
  @media (max-width: 480px) {
    input[id="mobile_btn"] + label {
      top: 20px;
      left: 20px; } }
  input[id="mobile_btn"] + label:hover {
    background-image: url("../img/mobile_btn_hover.png"); }
  @media (max-width: 880px) {
    input[id="mobile_btn"] + label {
      display: block; } }
input[id="mobile_btn"]:checked + label {
  background-image: url("../img/mobile_on_btn.png"); }
  input[id="mobile_btn"]:checked + label:hover {
    background-image: url("../img/mobile_on_hover_btn.png"); }

.menu_logo {
  display: none; }

.menu_black {
  display: none; }

@media (max-width: 880px) {
  .menu_logo {
    display: block; }
  input[id="mobile_btn"] + label + #menu {
    transform: translateX(-220px);
    transition: transform 0.5s ease; }
  input[id="mobile_btn"]:checked + label + #menu {
    transform: translateX(0px); }
  input[id="mobile_btn"] + label + #menu + .menu_black {
    display: block;
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: black;
    opacity: 0;
    transition: 1s all;
    z-index: -1; }
  input[id="mobile_btn"]:checked + label + #menu + .menu_black {
    opacity: 0.5;
    z-index: 500; } }

#menu {
  display: flex;
  align-items: center; }
  @media (max-width: 880px) {
    #menu {
      position: fixed;
      width: 220px;
      top: 0;
      left: 0;
      height: 100vh;
      flex-direction: column;
      z-index: 1000;
      background-color: #e6e6e6; } }
  @media (max-width: 480px) {
    #menu {
      width: 150px; } }
  #menu .menu_btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    margin-right: 40px; }
    @media (max-width: 1200px) {
      #menu .menu_btn {
        margin-right: 25px; } }
    @media (max-width: 880px) {
      #menu .menu_btn {
        margin-right: auto;
        margin-left: auto;
        justify-content: start;
        height: auto; }
        #menu .menu_btn:first-of-type {
          margin-top: 150px; } }
    #menu .menu_btn:last-child {
      margin-right: 90px; }
      @media (max-width: 880px) {
        #menu .menu_btn:last-child {
          margin-right: auto; } }
    #menu .menu_btn .menu_text {
      display: block;
      text-decoration: none;
      font-weight: 700;
      color: #3c3c3c;
      font-size: 2.0rem;
      transition: all 0.3s;
      margin-top: 29px; }
      @media (max-width: 880px) {
        #menu .menu_btn .menu_text {
          margin-top: 0;
          margin-bottom: 15px; } }
      @media (max-width: 480px) {
        #menu .menu_btn .menu_text {
          font-size: 16px; } }
    #menu .menu_btn .nav_line {
      display: block;
      width: 100%;
      margin-top: 28px;
      height: 3px;
      background-color: #008bd5;
      transform: scaleX(0);
      transition: all 0.3s; }
      @media (max-width: 880px) {
        #menu .menu_btn .nav_line {
          margin-top: 0px;
          margin-bottom: 40px; } }
    #menu .menu_btn:hover .menu_text {
      color: #008bd5;
      transform: scale(1.1); }
    #menu .menu_btn:hover .nav_line {
      transform: scaleX(1); }
  #menu .logout {
    margin-right: 50px; }
    @media (max-width: 880px) {
      #menu .logout {
        margin-right: auto;
        margin-left: auto; } }
  #menu .menu_activate .menu_text {
    color: #008bd5;
    transform: scale(1.1); }
  #menu .menu_activate .nav_line {
    transform: scaleX(1); }
  #menu .menu_logo {
    position: absolute;
    width: 100px;
    bottom: 50px; }
    @media (max-width: 480px) {
      #menu .menu_logo {
        width: 80px;
        bottom: 20px; } }
.contents {
  min-height: calc( 100vh - 80px - 182px);
  margin-left: auto;
  margin-right: auto; }
  @media (max-width: 480px) {
    .contents {
      minheight: calc( 100vh - 60px - 74px); } }
.top_img_box {
  width: 100%;
  position: relative; }
  .top_img_box .top_img {
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; }
    @media (max-width: 480px) {
      .top_img_box .top_img {
        height: 120px; } }
    .top_img_box .top_img::before {
      position: absolute;
      left: 0;
      top: 0;
      display: block;
      width: 100%;
      height: 100%;
      background-image: linear-gradient(to right, black 0%, transparent 100%);
      content: '';
      opacity: 0.8; }
  .top_img_box .top_text {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center; }
    .top_img_box .top_text .top_text_box {
      flex: 1;
      max-width: 1920px;
      height: 100%;
      z-index: 100;
      padding: 32px 92px;
      display: flex;
      flex-direction: column;
      justify-content: end;
      color: white; }
      @media (max-width: 480px) {
        .top_img_box .top_text .top_text_box {
          padding: 20px 30px; } }
      .top_img_box .top_text .top_text_box .top_img_title {
        font-size: 4.0rem;
        font-weight: 700;
        line-height: calc(5rem*1.5); }
        @media (max-width: 480px) {
          .top_img_box .top_text .top_text_box .top_img_title {
            font-size: 2.4rem;
            line-height: 4rem; } }
      .top_img_box .top_text .top_text_box .top_img_text {
        font-size: 2.0rem;
        line-height: calc(2rem*1.5); }
        @media (max-width: 480px) {
          .top_img_box .top_text .top_text_box .top_img_text {
            font-size: 1.2rem;
            font-weight: 500;
            line-height: 1.6rem; } }
.page_contents {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
  margin-bottom: 100px;
  padding: 10px; }
  @media (max-width: 880px) {
    .page_contents {
      padding: 20px; } }
  @media (max-width: 480px) {
    .page_contents {
      margin-top: 30px;
      margin-bottom: 30px; } }
  .page_contents .page_title {
    font-weight: 700;
    color: #3c3c3c;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 13px; }
    @media (max-width: 480px) {
      .page_contents .page_title {
        font-size: 1.6rem; } }
  .page_contents .page_title_line {
    width: 250px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 42px;
    display: block; }
    @media (max-width: 480px) {
      .page_contents .page_title_line {
        width: 120px;
        margin-bottom: 20px; } }
  .page_contents .page_subtext {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 2.6rem;
    color: #3c3c3c;
    text-align: center;
    margin-bottom: 65px;
    padding-right: 20px;
    padding-left: 20px; }
    @media (max-width: 480px) {
      .page_contents .page_subtext {
        font-size: 1rem;
        line-height: 1.6rem;
        margin-bottom: 30px; } }
footer {
  width: 100%;
  background-color: #151c22;
  height: 182px; }
  @media (max-width: 880px) {
    footer {
      height: 160px; } }
  @media (max-width: 480px) {
    footer {
      height: 74px; } }
  footer .footer_box {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1920px;
    height: 100%;
    padding-left: 30px;
    padding-right: 30px; }
    footer .footer_box #footer_logo_box {
      display: block; }
      footer .footer_box #footer_logo_box #footer_logo {
        height: 40px; }
        @media (max-width: 480px) {
          footer .footer_box #footer_logo_box #footer_logo {
            height: 20px; } }
      footer .footer_box #footer_logo_box .footer_logo_text {
        display: none;
        font-size: 0.6rem;
        text-decoration: none;
        color: white;
        margin-top: 5px; }
        @media (max-width: 480px) {
          footer .footer_box #footer_logo_box .footer_logo_text {
            display: block;
            text-align: center; } }
    footer .footer_box .footer_text_box p {
      text-decoration: none;
      font-size: 1.5rem;
      color: #e6e6e6;
      padding: 0px 20px; }
      @media (max-width: 880px) {
        footer .footer_box .footer_text_box p {
          font-size: 1.0rem;
          line-height: 1.5rem; } }
      @media (max-width: 480px) {
        footer .footer_box .footer_text_box p {
          font-size: .65rem;
          line-height: 1rem; } }
    footer .footer_box .footer_text_box #copyrights {
      margin-top: 20px;
      text-align: center;
      font-size: 1.5rem;
      font-weight: 300;
      color: #969696; }
      @media (max-width: 880px) {
        footer .footer_box .footer_text_box #copyrights {
          font-size: 1rem;
          margin-top: 5px;
          line-height: 1.5rem; } }
      @media (max-width: 480px) {
        footer .footer_box .footer_text_box #copyrights {
          font-size: 0.7rem;
          margin-top: 5px;
          line-height: 1rem; } }
      footer .footer_box .footer_text_box #copyrights span {
        color: #008bd5;
        font-weight: 500;
        font-size: 1.7rem; }
        @media (max-width: 480px) {
          footer .footer_box .footer_text_box #copyrights span {
            font-size: 0.7rem;
            line-height: 1rem; } }
        @media (max-width: 880px) {
          footer .footer_box .footer_text_box #copyrights span {
            font-size: 1rem;
            line-height: 1.5rem; } }
    @media (max-width: 480px) {
      footer .footer_box .footer_text_box {
        display: none; } }
    @media (max-width: 880px) {
      footer .footer_box .footer_text_box {
        display: none; } }
    footer .footer_box .footer_text_box.mobile {
      display: none; }
      @media (max-width: 480px) {
        footer .footer_box .footer_text_box.mobile {
          display: block; } }
      @media (max-width: 880px) {
        footer .footer_box .footer_text_box.mobile {
          display: block; } }
    footer .footer_box #btnTop {
      display: block;
      background-image: url("../img/up_button.svg");
      width: 54px;
      height: 54px;
      background-repeat: no-repeat;
      background-color: transparent !important;
      border: none;
      opacity: 0.6;
      transition: all 0.3s; }
      footer .footer_box #btnTop:hover {
        opacity: 1; }
      @media (max-width: 480px) {
        footer .footer_box #btnTop {
          display: none; } }
.button, input[type="file" i]::-webkit-file-upload-button {
  background-color: #008bd5;
  padding: 10px 15px;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.6rem; }
  @media (max-width: 480px) {
    .button, input[type="file" i]::-webkit-file-upload-button {
      padding: 6px 10px;
      border-redius: 3px;
      font-size: 1.4rem; } }
  .button:hover, input[type="file" i]::-webkit-file-upload-button:hover {
    background-color: #00a9f3; }

.button.button_dark {
  background-color: #3c3c3c; }
  .button.button_dark:hover {
    background-color: #c22035; }

h1.page_title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center; }
  h1.page_title::after {
    content: "";
    margin: auto;
    margin-top: 15px;
    margin-bottom: 40px;
    display: block;
    width: 20rem;
    height: 3px;
    background-color: #008bd5; }

.content_box {
  width: 100%; }

.flex {
  display: flex; }

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center; }

.error-message, .errorlist > li {
  color: white;
  text-align: center;
  font-size: 1.4rem; }

.error-message .errorlist.nonfield li {
  margin-bottom: 5px; }

@keyframes warning {
  0% {
    transform: scale(1); }
  100% {
    transform: scale(0.98, 1); } }

.error-message {
  padding: 0.5rem;
  width: 100%;
  background-color: #c22035;
  margin-top: 5px;
  margin-bottom: 5px;
  border-radius: 5px;
  animation: warning 0.5s alternate infinite; }

.full-size {
  width: 100%;
  min-height: calc(100vh); }

.center {
  display: flex;
  justify-content: center;
  align-items: center; }

.accounts_box * {
  font-size: 16px;
  margin-bottom: 20px; }

.accounts_box h1 {
  font-size: 24px; }

.slide {
  position: relative;
  overflow: hidden; }
  .slide .slide_list {
    display: flex;
    transform: translate(0, 0);
    transition: 0.3s linear; }
    .slide .slide_list .slide_item {
      flex: 0 0 100%;
      height: calc(100vh - 80px);
      list-style: none;
      overflow: hidden; }
      @media (max-width: 480px) {
        .slide .slide_list .slide_item {
          height: calc(100vh - 60px); } }
      .slide .slide_list .slide_item .slide_image {
        display: block;
        width: 100%;
        height: 100%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover; }
      .slide .slide_list .slide_item .img1 {
        background-image: url("../img/FXT_HOME_1_1920x1080.jpg"); }
      .slide .slide_list .slide_item .img2 {
        background-image: url("../img/FXT_HOME_2_1920x1080.jpg");
        background-blend-mode: darken; }
      .slide .slide_list .slide_item .img2::before {
        content: "";
        opacity: 0.6;
        position: absolute;
        top: 0px;
        left: 0px;
        right: 0px;
        bottom: 0px;
        background-color: #000; }
  .slide .item_box_1 {
    position: absolute;
    bottom: 120px;
    right: 93px;
    opacity: 0.8; }
    @media (max-width: 480px) {
      .slide .item_box_1 {
        right: 20px; } }
    .slide .item_box_1 img {
      display: block;
      margin-left: auto;
      width: 250px;
      margin-bottom: 2.8rem; }
      @media (max-width: 480px) {
        .slide .item_box_1 img {
          width: 150px;
          margin-bottom: 1.4rem; } }
    .slide .item_box_1 p {
      font-size: 2.0rem;
      font-weight: 900;
      color: white;
      text-align: right;
      line-height: 2.5rem; }
      @media (max-width: 480px) {
        .slide .item_box_1 p {
          font-size: 1.4rem;
          line_height: 2.0rem; } }
  .slide .item_box_2 {
    width: 600px;
    position: absolute;
    bottom: 50%;
    transform: translate(-50%, 50%);
    left: 150%; }
    @media (max-width: 480px) {
      .slide .item_box_2 {
        width: 320px; } }
    .slide .item_box_2 p {
      font-size: 2.5rem;
      font-weight: 700;
      color: white;
      text-align: center;
      line-height: 4.0rem; }
      @media (max-width: 880px) {
        .slide .item_box_2 p {
          font-size: 2rem;
          line-height: 3.4rem; }
          .slide .item_box_2 p::before {
            content: "";
            display: block;
            background-image: url(../img/fxt_logo_wh.svg);
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            width: 180px;
            height: 80px;
            position: relative;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 30px; } }
    @media (max-width: 880px) and (max-width: 480px) {
      .slide .item_box_2 p::before {
        width: 140px;
        height: 60px;
        margin-bottom: 10px; } }
      @media (max-width: 480px) {
        .slide .item_box_2 p {
          font-size: 1.4rem;
          line-height: 2.0rem; } }
      .slide .item_box_2 p span, .slide .item_box_2 p u {
        font-size: 3.5rem; }
        @media (max-width: 880px) {
          .slide .item_box_2 p span, .slide .item_box_2 p u {
            font-size: 3rem; } }
        @media (max-width: 480px) {
          .slide .item_box_2 p span, .slide .item_box_2 p u {
            font-size: 1.4rem;
            font-weight: 900; } }
      .slide .item_box_2 p u {
        text-decoration: underline;
        text-decoration-thickness: 2px;
        text-underline-offset: 10px; }
        @media (max-width: 480px) {
          .slide .item_box_2 p u {
            text-decoration: none; } }
  .slide button {
    border: 0;
    outline: 0;
    background: transparent;
    cursor: pointer; }
  .slide .buttons {
    position: absolute;
    top: 0;
    width: 100%;
    height: calc(100% - 1rem); }
  .slide .prev_btn,
  .slide .next_btn {
    position: absolute;
    top: 50%;
    width: 18px;
    height: 48px;
    transform: translate(-50%, -50%);
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
    transition: all 0.5s ease; }
    .slide .prev_btn:hover,
    .slide .next_btn:hover {
      opacity: 1;
      transform: scale(1.1) translate(-50%, -50%); }
  .slide .prev_btn {
    left: 7.7rem;
    background-image: url("../img/slide_btn_right.svg"); }
    @media (max-width: 480px) {
      .slide .prev_btn {
        left: 2.0rem; } }
  .slide .next_btn {
    right: 7.7rem;
    background-image: url("../img/slide_btn_left.svg"); }
    @media (max-width: 480px) {
      .slide .next_btn {
        right: 2.0rem; } }
  .slide .paginations {
    position: absolute;
    padding-top: 1rem;
    text-align: center;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%); }
  .slide .pagination {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    z-index: 10;
    margin: 20px; }
  .slide .pagination:not(:last-child) {
    margin-right: 0.3rem; }
  .slide .pagination.on {
    background: white; }

.main_footer {
  z-index: 10;
  width: 100%;
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%); }
  .main_footer p {
    text-align: center;
    color: white;
    font-weight: 300;
    font-size: 1.2rem; }
    @media (max-width: 480px) {
      .main_footer p {
        font-size: .8rem; } }
    .main_footer p span {
      font-weight: 500;
      font-size: 1.2rem;
      color: #008bd5; }
      @media (max-width: 480px) {
        .main_footer p span {
          font-size: .8rem; } }
.top_img.product {
  background-image: url("../img/FXT_PRODUCT_TOP.jpg"); }

.page_contents.product {
  max-width: 1000px; }

.page_box.product img {
  width: 100%; }

@media (max-width: 480px) {
  .page_box.product > .desktop {
    display: none; } }

.page_box.product > .mobile {
  display: none; }
  @media (max-width: 480px) {
    .page_box.product > .mobile {
      display: block; } }
.product_img_text {
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 70px;
  margin-bottom: 50px; }
  @media (max-width: 480px) {
    .product_img_text {
      font-size: 1.5rem;
      margin-top: 30px;
      margin-bottom: 40px; } }
.top_img.company {
  background-image: url("../img/FXT_COMPANY_TOP.jpg"); }

.page_contents.company {
  max-width: 1000px; }

.ceo_box {
  display: flex;
  min-height: 735px;
  gap: 30px;
  margin-bottom: 40px; }
  @media (max-width: 880px) {
    .ceo_box {
      display: block; } }
  @media (max-width: 480px) {
    .ceo_box {
      margin-bottom: 60px; } }
  .ceo_box .ceo_img {
    flex: 1;
    background-image: url("../img/FXT_COMPANY_MID_1.jpg");
    background-position: center;
    background-size: cover;
    max-height: 650px; }
    @media (max-width: 880px) {
      .ceo_box .ceo_img {
        height: 450px;
        margin-bottom: 30px; } }
    @media (max-width: 480px) {
      .ceo_box .ceo_img {
        max-height: 240px; } }
  .ceo_box .ceo_text_box {
    flex: 1; }
    .ceo_box .ceo_text_box .ceo_title {
      font-weight: 700;
      font-size: 3.0rem;
      line-height: 4.5rem;
      color: #008bd5;
      margin-bottom: 40px; }
      @media (max-width: 480px) {
        .ceo_box .ceo_text_box .ceo_title {
          font-size: 1.6rem;
          line-height: 2.6rem;
          margin-bottom: 25px; } }
    .ceo_box .ceo_text_box .ceo_text {
      font-weight: 300;
      font-size: 1.6rem;
      line-height: 2.6rem;
      text-align: left;
      color: #3c3c3c;
      margin-bottom: 64px;
      word-break: keep-all; }
      @media (max-width: 480px) {
        .ceo_box .ceo_text_box .ceo_text {
          font-size: 1.2rem;
          line-height: 2rem;
          font-weight: 500;
          margin-bottom: 25px; } }
    .ceo_box .ceo_text_box .ceo_sign {
      font-weight: 500;
      font-size: 2.6rem;
      text-align: right;
      color: #3c3c3c; }
      @media (max-width: 480px) {
        .ceo_box .ceo_text_box .ceo_sign {
          font-size: 1.4rem;
          font-weight: 700; } }
.value_box .value_column {
  display: flex;
  width: 100%;
  gap: 28px; }
  @media (max-width: 880px) {
    .value_box .value_column {
      display: block; } }
  .value_box .value_column .value_item {
    flex: 1; }
    .value_box .value_column .value_item .value_title_box {
      position: relative; }
      .value_box .value_column .value_item .value_title_box .value_imgbox {
        flex: 1;
        position: relative;
        padding: 44px 22px;
        height: 380px;
        background-position: center;
        background-size: cover; }
        @media (max-width: 480px) {
          .value_box .value_column .value_item .value_title_box .value_imgbox {
            height: 300px; } }
        .value_box .value_column .value_item .value_title_box .value_imgbox::before {
          position: absolute;
          width: 100%;
          height: 100%;
          left: 0;
          top: 0;
          display: block;
          background-image: linear-gradient(to top, black 0%, transparent 60%);
          content: '';
          opacity: 0.8; }
    .value_box .value_column .value_item .value_item_title {
      position: absolute;
      display: flex;
      flex-direction: column;
      justify-content: end;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 30px 20px;
      color: white; }
      @media (max-width: 480px) {
        .value_box .value_column .value_item .value_item_title {
          padding: 20px 10px; } }
      .value_box .value_column .value_item .value_item_title .value_title {
        font-weight: 700;
        font-size: 2.6rem;
        line-height: 3.4rem;
        margin-bottom: 16px; }
        @media (max-width: 480px) {
          .value_box .value_column .value_item .value_item_title .value_title {
            font-size: 2.0rem;
            line-height: 2.8rem;
            margin-bottom: 10px; } }
      .value_box .value_column .value_item .value_item_title .value_subtitle {
        font-weight: 300;
        font-size: 2.0rem; }
        @media (max-width: 480px) {
          .value_box .value_column .value_item .value_item_title .value_subtitle {
            font-size: 1.6rem;
            font-weight: 500; } }
    .value_box .value_column .value_item .value_text {
      padding: 26px 0px;
      font-weight: 300;
      font-size: 1.6rem;
      line-height: 2.6rem;
      color: #3c3c3c;
      word-break: keep-all; }
      @media (max-width: 480px) {
        .value_box .value_column .value_item .value_text {
          font-size: 1.2rem;
          font-weight: 500;
          line-height: 2.2rem; } }
.value_imgbox.value1 {
  background-image: url("../img/FXT_COMPANY_MID_2.jpg"); }

.value_imgbox.value2 {
  background-image: url("../img/FXT_COMPANY_MID_3.jpg"); }

.value_imgbox.value3 {
  background-image: url("../img/FXT_COMPANY_MID_4.jpg"); }

.top_img.management {
  background-image: url("../img/FXT_QUALITY_TOP.jpg"); }

.page_contents.management {
  max-width: 1740px;
  margin-bottom: 30px; }

.management_mid {
  width: 100%;
  margin-bottom: 100px; }
  @media (max-width: 480px) {
    .management_mid {
      margin-bottom: 30px; } }
.management_mid.desktop {
  display: block; }
  @media (max-width: 480px) {
    .management_mid.desktop {
      display: none; } }
.management_mid.mobile {
  display: none; }
  @media (max-width: 480px) {
    .management_mid.mobile {
      display: block; } }
.management_background {
  width: 100%;
  background-color: #e6e6e6; }

.management_text_box {
  margin-left: auto;
  margin-right: auto;
  max-width: 1740px;
  padding: 74px 90px;
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  row-gap: 100px;
  column-gap: 50px; }
  @media (max-width: 480px) {
    .management_text_box {
      display: block;
      padding: 30px 40px; } }
  .management_text_box .management_item.item_title {
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 3.2rem;
    color: #008bd5;
    text-align: right;
    word-break: keep-all; }
    @media (max-width: 480px) {
      .management_text_box .management_item.item_title {
        font-size: 1.2rem;
        line-height: 1.8rem;
        text-align: left;
        margin-bottom: 10px; } }
  .management_text_box .management_item.item_text {
    font-weight: 500;
    font-size: 2.2rem;
    line-height: 3.2rem;
    color: #3c3c3c;
    text-align: left; }
    @media (max-width: 480px) {
      .management_text_box .management_item.item_text {
        font-size: 1.2rem;
        line-height: 1.8rem;
        margin-bottom: 12px; } }
.top_img.recruit {
  background-image: url("../img/FXT_RECRUIT_TOP.jpg"); }

.page_contents.recruit {
  max-width: 1200px;
  min-height: calc(100vh - 80px - 300px - 352px); }
  @media (max-width: 880px) {
    .page_contents.recruit {
      min-height: calc(100vh - 80px - 300px - 160px); } }
  @media (max-width: 480px) {
    .page_contents.recruit {
      min-height: calc(100vh - 60px - 180px - 74px); } }
.page_box .post_btn_box {
  text-align: right; }

.post_list {
  display: grid;
  grid-template-columns: 100px 1fr 250px 140px;
  margin-top: 50px;
  width: 100%;
  margin-bottom: 50px; }
  @media (max-width: 880px) {
    .post_list {
      grid-template-columns: 100px 1fr 250px; } }
  @media (max-width: 880px) {
    .post_list.desktop {
      display: none; } }
  .post_list.tablet {
    display: none; }
    @media (max-width: 880px) {
      .post_list.tablet {
        display: grid; } }
    @media (max-width: 480px) {
      .post_list.tablet {
        display: gird;
        grid-template-columns: 60px 1fr 150px; } }
  .post_list .post_list_item {
    text-align: center;
    border-bottom: 1px solid #008bd5;
    padding: 26px;
    font-size: 2.0rem;
    font-weight: 500;
    color: #3c3c3c; }
    @media (max-width: 480px) {
      .post_list .post_list_item {
        padding: 10px; } }
    .post_list .post_list_item a {
      display: inline-block;
      color: inherit;
      font-size: inherit; }
  .post_list .post_row {
    display: contents; }
    .post_list .post_row:hover .post_list_item {
      background-color: rgba(0, 139, 213, 0.03); }
    .post_list .post_row .list_item.list_text {
      font-size: 2.0rem;
      font-weight: 300;
      color: #3c3c3c; }
      @media (max-width: 480px) {
        .post_list .post_row .list_item.list_text {
          font-size: 1.4rem; } }
    .post_list .post_row .list_item.list_text.before {
      color: white; }
    .post_list .post_row .list_item.list_text.processing {
      color: white; }
    .post_list .post_row .list_item.list_text.end {
      color: white; }
  .post_list .list_title {
    font-weight: 700;
    text-align: center;
    border-top: 3px solid #008bd5;
    font-size: 2.0rem;
    background-color: rgba(0, 139, 213, 0.1); }
    @media (max-width: 480px) {
      .post_list .list_title {
        font-size: 1.4rem; } }
  .post_list .post_process {
    display: flex;
    padding: 0px; }
  .post_list .post_process_box {
    padding: 10px;
    width: 80px;
    margin: auto;
    background-color: #3c3c3c;
    border-radius: 5px;
    color: white;
    font-size: 1.6rem; }
    @media (max-width: 480px) {
      .post_list .post_process_box {
        font-size: 1.2rem;
        paddin: 5px;
        width: 64px; } }
.processing {
  background-color: #008bd5 !important;
  font-size: 1.6rem; }

.end {
  background-color: #151c22 !important;
  font-size: 1.4rem; }

.before {
  background-color: #e6e6e6 !important;
  font-size: 1.4rem;
  color: black !important; }

@media (max-width: 880px) {
  .post_list_item {
    display: flex;
    flex-direction: column; }
    .post_list_item .post_process_box {
      margin-top: 10px; } }

.post_num, .post_title {
  display: flex;
  justify-content: center;
  align-items: center; }

.pagination_list {
  display: flex;
  justify-content: center;
  column-gap: 30px; }
  .pagination_list li {
    font-size: 2.0rem;
    text-decoration: none; }
    @media (max-width: 480px) {
      .pagination_list li {
        font-size: 1.4rem; } }
    .pagination_list li a {
      font-size: inherit;
      font-weight: 500; }
  .pagination_list .current {
    font-weight: 700;
    color: #008bd5; }

.post_empty {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: calc( 20vh);
  margin-top: 30px;
  border-top: 1px solid #008bd5;
  border-bottom: 1px solid #008bd5; }
  .post_empty p {
    font-size: 1.6rem;
    text-align: center; }

@media (max-width: 1200px) {
  .page_contents.recruit {
    padding: 20px; } }

.post_form_title {
  display: flex;
  gap: 20px; }
  @media (max-width: 880px) {
    .post_form_title {
      display: block; } }
  .post_form_title .post_input_form {
    font-size: 1.6rem;
    padding: 10px;
    margin-bottom: 10px; }
  .post_form_title .title {
    width: 100%; }
    .post_form_title .title .post_input_form {
      width: 100%; }
  .post_form_title .date_box {
    display: flex;
    gap: 20px;
    align-items: center; }
    @media (max-width: 480px) {
      .post_form_title .date_box {
        flex-direction: column;
        gap: 0; } }
    .post_form_title .date_box .recruit_time {
      width: 180px; }
      @media (max-width: 880px) {
        .post_form_title .date_box .recruit_time {
          width: 100%; } }
      .post_form_title .date_box .recruit_time .start_date, .post_form_title .date_box .recruit_time .end_date {
        width: 100%; }

.post_form_btn_box {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px; }

input[type="file" i]::-webkit-file-upload-button {
  margin-top: 30px;
  margin-right: 20px; }

#id_add_file {
  font-size: 1.6rem; }

.file_upload {
  font-size: 1.6rem; }
  .file_upload a {
    font-size: inherit; }
  .file_upload label {
    font-size: inherit; }

.saved_files {
  border: 1px solid #c8c8c8;
  width: 100%;
  padding: 20px; }
  .saved_files h3 {
    font-size: 14px;
    margin-bottom: 20px; }
  .saved_files .file_list li {
    margin-bottom: 10px;
    display: flex; }
    .saved_files .file_list li:last-of-type {
      margin-bottom: 0; }
    .saved_files .file_list li a {
      font-size: 14px;
      display: flex;
      align-items: center;
      padding: 5px 10px;
      border-radius: 10px; }
      .saved_files .file_list li a:hover {
        background-color: rgba(49, 255, 0, 0.5); }
    .saved_files .file_list li input {
      display: none; }
      .saved_files .file_list li input:checked + label {
        background-color: red; }
    .saved_files .file_list li label {
      margin-left: 10px;
      background-color: gray;
      padding: 5px 10px;
      color: white;
      border-radius: 5px;
      display: flex;
      justify-content: center;
      font-size: 12px; }
      .saved_files .file_list li label:hover {
        background-color: orange; }
    .saved_files .file_list li .download_btn {
      width: 14px;
      height: 14px;
      margin-right: 15px; }

.file_size {
  font-size: 14px;
  margin-top: 1rem; }

.post_form_content {
  padding-bottom: 30px;
  border-bottom: 1px solid #008bd5; }

#file_names {
  padding: 10px; }
  #file_names ul li {
    margin-bottom: 10px; }

.post_title.detail {
  margin-top: 80px;
  margin-bottom: 80px;
  font-size: 2.5rem;
  text-align: center; }
  @media (max-width: 480px) {
    .post_title.detail {
      font-size: 2.3rem;
      margin-top: 50px;
      margin-bottom: 50px; } }
.post_info {
  text-align: center;
  font-size: 2.0rem;
  margin-bottom: 30px;
  margin-bottom: 30px; }
  .post_info .post_start_date {
    font-size: 2.0rem; }
    @media (max-width: 480px) {
      .post_info .post_start_date {
        font-size: 1.4rem; } }
  .post_info .post_detail_process {
    padding: 5px 10px;
    color: white;
    border-radius: 5px;
    margin-left: 10px;
    font-size: 1.5rem; }

.detail_top_btn_box {
  text-align: right; }

.post_box, .note-editable {
  font-size: 1.6rem;
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid #008bd5;
  border-bottom: 1px solid #008bd5;
  margin-top: 30px;
  margin-bottom: 30px; }
  .post_box p, .post_box span, .note-editable p, .note-editable span {
    font-size: 1.8rem;
    line-height: 3.2rem; }
    @media (max-width: 480px) {
      .post_box p, .post_box span, .note-editable p, .note-editable span {
        font-size: 1.4rem;
        line-height: 2.2rem; } }
  .post_box .blockquote, .note-editable .blockquote {
    margin-bottom: 1rem;
    font-size: 1.25em; }
  .post_box h1, .note-editable h1 {
    font-size: 2.5em; }
  .post_box h2, .note-editable h2 {
    font-size: 2em; }
  .post_box h3, .note-editable h3 {
    font-size: 1.75em; }
  .post_box h4, .note-editable h4 {
    font-size: 1.5em; }
  .post_box h5, .note-editable h5 {
    font-size: 1.25em; }
  .post_box h6, .note-editable h6 {
    font-size: 1em; }
  .post_box .h1, .post_box .h2, .post_box .h3, .post_box .h4, .post_box .h5, .post_box .h6, .post_box h1, .post_box h2, .post_box h3, .post_box h4, .post_box h5, .post_box h6, .note-editable .h1, .note-editable .h2, .note-editable .h3, .note-editable .h4, .note-editable .h5, .note-editable .h6, .note-editable h1, .note-editable h2, .note-editable h3, .note-editable h4, .note-editable h5, .note-editable h6 {
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.2; }
  .post_box b, .post_box font, .post_box u, .post_box pre, .post_box li, .post_box a, .note-editable b, .note-editable font, .note-editable u, .note-editable pre, .note-editable li, .note-editable a {
    font-size: inherit; }
  .post_box u, .note-editable u {
    text-decoration: underline; }
  .post_box ol, .post_box ul, .note-editable ol, .note-editable ul {
    font-size: inherit; }
  .post_box ol, .note-editable ol {
    list-style: decimal; }
  .post_box ul, .note-editable ul {
    list-style: disc; }
  .post_box a, .note-editable a {
    color: #007bff; }

.post_form_btn_box {
  margin-top: 20px;
  padding: 30px 0; }
  .post_form_btn_box a {
    line-height: normal; }

.download_text {
  font-size: 1.8rem; }

.down_btn {
  margin-right: 20px; }

.top_img.contact {
  background-image: url("../img/FXT_CONTACT_TOP.jpg"); }

.page_contents.contact {
  max-width: 1750px; }

.page_title_line.contact {
  margin-bottom: 90px; }
  @media (max-width: 480px) {
    .page_title_line.contact {
      margin-bottom: 30px; } }
.map_page_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px; }
  .map_page_box .map_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; }
    .map_page_box .map_box .map_object {
      width: 90%;
      height: 40vh;
      margin-bottom: 30px;
      max-width: 1000px;
      border: 1px solid rgba(0, 0, 0, 0.1); }

.map_address {
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap; }
  @media (max-width: 880px) {
    .map_address {
      font-size: 2rem; } }
  @media (max-width: 480px) {
    .map_address {
      font-size: 1.4rem;
      margin-bottom: 20px; } }
  .map_address .map_point {
    height: 30px; }
    @media (max-width: 880px) {
      .map_address .map_point {
        height: 20px; } }
    @media (max-width: 480px) {
      .map_address .map_point {
        height: 14px; } }
.map_img {
  width: 100%;
  max-width: 1000px;
  height: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 122px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }
  @media (max-width: 880px) {
    .map_img {
      height: 500px;
      margin-bottom: 80px; } }
  @media (max-width: 480px) {
    .map_img {
      height: 360px;
      margin-bottom: 30px; } }
.delete_background {
  width: 100%;
  height: calc(100vh - 100px - 182px);
  display: flex;
  justify-content: center;
  align-items: center; }

.delete_box {
  max-width: 800px; }

.delete_title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px; }

.delete_text {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px; }
  .delete_text b {
    font-size: 2.5rem; }

.delete_btn_box {
  margin-left: auto;
  margin-right: auto;
  width: 200px;
  display: flex;
  justify-content: space-between; }
  .delete_btn_box a.button.button_dark {
    line-height: normal; }
    .delete_btn_box a.button.button_dark:hover {
      background-color: #969696; }
  .delete_btn_box button.button:hover {
    background-color: #c22035; }

.background_box {
  width: 100%;
  height: calc(100vh - 80px);
  background-image: url("../img/FXT_HOME_1_1920x1080.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center; }
  @media (max-width: 480px) {
    .background_box {
      height: calc(100vh - 60px); } }
  .background_box .contact_box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: white;
    padding: 80px;
    border-radius: 20px; }
    @media (max-width: 880px) {
      .background_box .contact_box {
        padding: 40px; } }
    @media (max-width: 480px) {
      .background_box .contact_box {
        padding: 30px; } }
    .background_box .contact_box .login_logo {
      width: 300px;
      margin-bottom: 20px; }
      @media (max-width: 880px) {
        .background_box .contact_box .login_logo {
          width: 200px; } }
    .background_box .contact_box .login_text {
      font-weight: 500;
      font-size: 1.4rem;
      line-height: 2.2rem;
      color: #3c3c3c;
      margin-bottom: 30px; }
    .background_box .contact_box .login-input {
      font-size: 1.4rem;
      padding: 10px;
      border: 2px solid #e6e6e6;
      margin-bottom: 30px;
      border-radius: 5px;
      width: 240px; }
    .background_box .contact_box .login-button {
      font-size: 1.4rem;
      background-color: #969696;
      width: 240px;
      padding: 20px 10px;
      color: white;
      border-radius: 10px; }
      .background_box .contact_box .login-button:hover {
        background-color: #008bd5; }

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