:root {
  --colorOne: #ffffff;
  --colorTwo: #fcfdff;
  --colorThree: #ebecf5;
  --colorFour: #000000;
  --colorFive: #050505;
  --colorSix: #1a1a1a;
  --colorSeven: #27ad75;
  --colorEight: #ffc300;
  --colorNine: #0a0b0d;
  --colorTen: #3c3d3d;
  --colorEleven: #2d2d2e;
  --colorTwelve: #f13c54;
  --colorThirteen: #ff0000;
  --colorFourteen: #37a42d;
  --colorFifteen: #f85814;
  --font-family-base: "HarmonyOS Sans", sans-serif;
  --font-family-accent: "Inter", sans-serif; }

@font-face {
  font-family: "HarmonyOS Sans";
  src: url("./fonts/HarmonyOS_Sans.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "DM Sans";
  src: url("./fonts/DMSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap; }

body {
  background-color: var(--colorFive); }
  @media (min-width: 1441px) {
    body {
      background-color: var(--colorFive); } }
  body .page-container {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px; }
  body .header {
    position: relative;
    display: flex;
    justify-content: space-between;
    max-height: 64px;
    width: 100%;
    align-items: center; }
    body .header__left {
      display: flex;
      font-family: var(--font-family-base);
      align-items: center; }
      body .header__left__logo {
        height: auto;
        max-width: 7vw;
        margin-right: 24px;
        display: flex;
        align-items: center;
        justify-content: center; }
        @media (max-width: 375px) {
          body .header__left__logo {
            min-width: 69px;
            min-height: 17px; } }
        @media (min-width: 375px) {
          body .header__left__logo {
            min-width: 69px;
            min-height: 17px; } }
      body .header__left__menu {
        display: flex;
        flex-wrap: wrap;
        font-size: 0.9rem;
        color: var(--colorTwo);
        transition: color;
        cursor: pointer;
        white-space: nowrap; }
        body .header__left__menu--sp {
          margin-right: 24px; }
        body .header__left__menu--sp:hover {
          color: var(--colorEight); }
        body .header__left__menu .dropbtn {
          background-color: var(--colorFour);
          color: var(--colorTwo);
          font-size: 0.9rem;
          border: none; }
          body .header__left__menu .dropbtn:hover {
            color: var(--colorEight); }
        body .header__left__menu .dropdown {
          position: relative;
          display: inline-block;
          font-family: var(--font-family-base); }
          body .header__left__menu .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transition-delay: 0s; }
        body .header__left__menu .dropdown-content {
          display: block;
          opacity: 0;
          visibility: hidden;
          position: absolute;
          top: 205%;
          left: 5%;
          background-color: var(--colorTwo);
          font-family: var(--font-family-base);
          min-width: 360px;
          min-height: 271px;
          z-index: 1;
          border-radius: 3%;
          transition: background-color, opacity 0.3s ease, visibility 0s linear 2.3s; }
          body .header__left__menu .dropdown-content .dropdown-item {
            position: relative;
            padding-left: 70px; }
            body .header__left__menu .dropdown-content .dropdown-item::after {
              content: "";
              position: absolute;
              top: 25%;
              left: 7%;
              aspect-ratio: 1;
              min-width: 24px;
              z-index: 4;
              background: url("../icons/icon1.webp") center/contain no-repeat; }
            body .header__left__menu .dropdown-content .dropdown-item:hover {
              color: var(--colorEight); }
            body .header__left__menu .dropdown-content .dropdown-item:nth-child(2)::after {
              background: url("../icons/icon2.webp") center/contain no-repeat; }
            body .header__left__menu .dropdown-content .dropdown-item:nth-child(3)::after {
              background: url("../icons/icon3.webp") center/contain no-repeat; }
          body .header__left__menu .dropdown-content-text {
            display: block;
            color: var(--colorTen);
            font-size: 0.8rem;
            font-family: var(--font-family-base); }
        body .header__left__menu .dropbtn::after {
          content: "";
          position: absolute;
          top: 30%;
          left: 100%;
          aspect-ratio: 1;
          min-width: 10px;
          z-index: 5;
          background: url("../icons/vector.webp") center/contain no-repeat; }
        body .header__left__menu .dropbtn:hover::after {
          content: "";
          position: absolute;
          top: 30%;
          left: 100%;
          aspect-ratio: 1;
          min-width: 10px;
          z-index: 5;
          transform: rotate(180deg);
          background: url("../icons/vector2.webp") center/contain no-repeat; }
        body .header__left__menu .dropdown-content a {
          position: relative;
          color: var(--colorFive);
          padding: 12px 16px;
          text-decoration: none;
          display: block; }
        body .header__left__menu .dropdown-content a:hover {
          background-color: #f1f1f1; }
        body .header__left__menu .dropdown:hover .dropdown-content {
          display: block; }
        @media (max-width: 928px) {
          body .header__left__menu {
            display: none; } }
    body .header__right {
      display: flex;
      gap: 20px;
      justify-content: flex-end;
      font-family: var(--font-family-base);
      align-items: flex-start; }
      body .header__right__login {
        color: var(--colorOne);
        font-size: 0.9rem;
        white-space: nowrap;
        transition: color;
        cursor: pointer; }
        body .header__right__login:hover {
          color: var(--colorEight); }
        @media (max-width: 439px) {
          body .header__right__login {
            display: none; } }
      body .header__right__button {
        white-space: nowrap;
        font-size: 0.9rem;
        border-radius: 6px;
        min-width: 126px;
        min-height: 28px;
        background-color: var(--colorEight);
        transform: background-color; }
        body .header__right__button:hover {
          background-color: var(--colorFive);
          border: 1px solid var(--colorEight);
          color: var(--colorEight); }
        @media (max-width: 439px) {
          body .header__right__button {
            display: none; } }
      body .header__right__lang-selector {
        position: relative; }
        body .header__right__lang-selector select {
          font-size: 0.9rem;
          font-family: var(--font-family-base);
          background-color: var(--colorEight);
          color: var(--colorFive);
          border-radius: 5px;
          max-width: 70px;
          max-height: 40px;
          width: 100%;
          cursor: pointer; }
          body .header__right__lang-selector select:hover {
            background-color: var(--colorFive);
            color: var(--colorEight); }
          body .header__right__lang-selector select option {
            background-color: var(--colorFive);
            color: var(--colorEight); }
          @media (max-width: 463px) {
            body .header__right__lang-selector select {
              font-size: 0.6rem;
              padding: 5px 8px; } }
      body .header__right__iconSun {
        min-width: 24px;
        min-height: 24px;
        transition: transform 0.3s ease; }
        @media (max-width: 463px) {
          body .header__right__iconSun {
            min-width: 15px;
            min-height: 15px;
            transition: transform 0.3s ease; } }
        body .header__right__iconSun:hover {
          padding-top: 1px;
          transform: scale(1.2); }
    body .header__displayNones {
      display: flex;
      flex-wrap: wrap;
      font-size: 0.9rem;
      color: var(--colorTwo);
      transition: color;
      cursor: pointer;
      white-space: normal; }
      body .header__displayNones__menus {
        margin-right: 24px; }
      body .header__displayNones__menus:hover {
        color: var(--colorEight); }
      body .header__displayNones .dropbtnss__displayNones {
        background-color: var(--colorFour);
        color: var(--colorTwo);
        font-size: 0.9rem;
        border: none; }
        body .header__displayNones .dropbtnss__displayNones:hover {
          color: var(--colorEight); }
      body .header__displayNones .dropdownss__displayNones {
        position: relative;
        display: inline-block;
        font-family: var(--font-family-base); }
        body .header__displayNones .dropdownss__displayNones:hover .dropdownss-contents__displayNones {
          opacity: 1;
          visibility: visible;
          transition-delay: 0s; }
      body .header__displayNones .dropdownss-contents__displayNones {
        display: block;
        white-space: normal;
        opacity: 0;
        visibility: hidden;
        position: absolute;
        top: 105%;
        left: 5%;
        background-color: var(--colorTwo);
        font-family: var(--font-family-base);
        z-index: 1;
        transition: background-color, opacity 0.3s ease, visibility 0s linear 2.3s; }
        @media (max-width: 460px) {
          body .header__displayNones .dropdownss-contents__displayNones {
            font-size: 0.6rem; } }
        @media (min-width: 460px) {
          body .header__displayNones .dropdownss-contents__displayNones {
            min-width: 360px;
            min-height: 271px; } }
        @media (max-width: 700px) {
          body .header__displayNones .dropdownss-contents__displayNones {
            max-width: 160px;
            width: auto;
            max-height: none;
            left: 0; } }
        body .header__displayNones .dropdownss-contents__displayNones .dropdownss-items__displayNones {
          position: relative;
          padding-left: 70px;
          white-space: normal; }
          body .header__displayNones .dropdownss-contents__displayNones .dropdownss-items__displayNones::after {
            content: "";
            position: absolute;
            top: 25%;
            left: 7%;
            aspect-ratio: 1;
            min-width: 24px;
            z-index: 4;
            background: url("../icons/icon1.webp") center/contain no-repeat; }
          body .header__displayNones .dropdownss-contents__displayNones .dropdownss-items__displayNones:hover {
            color: var(--colorEight); }
          body .header__displayNones .dropdownss-contents__displayNones .dropdownss-items__displayNones:nth-child(2)::after {
            background: url("../icons/icon2.webp") center/contain no-repeat; }
          body .header__displayNones .dropdownss-contents__displayNones .dropdownss-items__displayNones:nth-child(3)::after {
            background: url("../icons/icon3.webp") center/contain no-repeat; }
        body .header__displayNones .dropdownss-contents__displayNones-texts {
          display: block;
          white-space: normal;
          color: grey;
          font-size: 0.8rem;
          font-family: var(--font-family-base); }
          @media (max-width: 500px) {
            body .header__displayNones .dropdownss-contents__displayNones-texts {
              font-size: 0.6rem; } }
      body .header__displayNones .dropbtnss::after {
        content: "";
        position: absolute;
        top: 30%;
        left: 100%;
        aspect-ratio: 1;
        min-width: 10px;
        z-index: 5;
        background: url("../icons/vector.webp") center/contain no-repeat; }
      body .header__displayNones .dropbtnsss__displayNones:hover::after {
        content: "";
        position: absolute;
        top: 30%;
        left: 100%;
        aspect-ratio: 1;
        min-width: 10px;
        z-index: 5;
        transform: rotate(180deg);
        background: url("../icons/vector2.webp") center/contain no-repeat; }
      body .header__displayNones .dropdownss-contents__displayNones a {
        position: relative;
        color: var(--colorFive);
        padding: 12px 16px;
        text-decoration: none;
        display: block; }
      body .header__displayNones .dropdownss-contents__displayNones a:hover {
        background-color: var(--colorOne); }
      body .header__displayNones .dropdownss__displayNones:hover .dropdownss-contents__displayNones {
        display: block; }
      @media (min-width: 927px) {
        body .header__displayNones {
          display: none; } }
  body .main {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%; }
    body .main__left {
      order: 1; }
      body .main__left__word {
        order: 1;
        color: var(--colorOne);
        font-family: var(--font-family-base);
        font-size: 1.5rem;
        padding-left: 60px;
        padding-top: 170px; }
        @media (max-width: 768px) {
          body .main__left__word {
            order: 2;
            padding-top: 30px;
            padding-left: 20px;
            font-size: 1rem; } }
        @media (max-width: 375px) {
          body .main__left__word {
            order: 2;
            padding-top: 30px;
            padding-left: 20px;
            font-size: 0.9rem; } }
      body .main__left__but {
        min-width: 336px;
        min-height: 56px;
        font-family: var(--font-family-base);
        font-size: 0.9rem;
        margin-left: 20px; }
        @media (max-width: 375px) {
          body .main__left__but {
            min-width: 250px;
            min-height: 46px;
            font-family: var(--font-family-base);
            font-size: 0.9rem;
            margin-left: 50px; } }
        @media (max-width: 700px) {
          body .main__left__but {
            margin-left: 80px; } }
        @media (min-width: 375px) {
          body .main__left__but {
            margin-left: 20px; } }
        body .main__left__but:hover {
          border: 2px solid var(--colorEight);
          color: var(--colorEight);
          background-color: var(--colorFive); }
        body .main__left__but-sign {
          background-color: var(--colorEight);
          min-width: 336px;
          min-height: 56px;
          font-family: var(--font-family-base);
          font-size: 0.9rem;
          margin-left: 20px; }
          @media (max-width: 375px) {
            body .main__left__but-sign {
              min-width: 250px;
              min-height: 46px;
              font-family: var(--font-family-base);
              font-size: 0.9rem;
              margin-left: 50px; } }
          @media (max-width: 700px) {
            body .main__left__but-sign {
              margin-left: 80px; } }
          @media (min-width: 375px) {
            body .main__left__but-sign {
              margin-left: 20px; } }
          body .main__left__but-sign:hover {
            border: 2px solid var(--colorEight);
            color: var(--colorEight);
            background-color: var(--colorFive); }
    body .main__right {
      order: 2;
      position: relative; }
      body .main__right__computer {
        display: flex;
        position: relative;
        top: 45%;
        left: 45%;
        min-width: 337px;
        height: auto; }
        @media (max-width: 768px) {
          body .main__right__computer {
            position: relative;
            top: 15%;
            left: 0%; } }
        @media (max-width: 700px) {
          body .main__right__computer {
            position: relative;
            top: 15%;
            left: 10%; } }
        @media (max-width: 672px) {
          body .main__right__computer {
            position: relative;
            top: 15%;
            left: 0%; } }
    body .main__ticker {
      order: 3;
      flex: 0 0 100%;
      position: relative;
      margin-top: 10%;
      max-height: 25px;
      max-width: 100%;
      overflow: hidden;
      white-space: nowrap;
      background-color: var(--colorEight);
      border: 1px solid var(--colorEight); }
      @media (max-width: 768px) {
        body .main__ticker {
          position: relative;
          margin-top: 20%; } }
      @media (max-width: 1090px) {
        body .main__ticker {
          position: relative;
          margin-top: 20%; } }
      body .main__ticker__container {
        display: inline-block;
        padding-left: 100%;
        animation: ticker 10s linear infinite; }
        body .main__ticker__container__item {
          display: inline-block;
          margin-right: 50px;
          color: var(--colorFive); }

@keyframes ticker {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(-100%); } }
    body .main__grid {
      display: grid;
      flex-wrap: wrap;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(3, 1fr);
      order: 4;
      margin-left: 10%;
      margin-top: 5%;
      gap: 5px 5px; }
      @media (max-width: 1168px) {
        body .main__grid {
          grid-template-columns: repeat(2, 1fr); } }
      @media (max-width: 788px) {
        body .main__grid {
          grid-template-columns: repeat(1, 1fr);
          margin-left: 4%; } }
      body .main__grid__item {
        display: flex;
        flex-direction: column;
        position: relative;
        min-width: 346px;
        min-height: 151px;
        color: var(--colorOne);
        background-color: var(--colorNine);
        border: 1px solid var(--colorEleven);
        border-radius: 20px;
        font-family: var(--font-family-base);
        padding-left: 20px;
        padding-top: 40px;
        font-size: 0.9rem;
        transform: scale(1);
        transition: transform 0.3s ease;
        cursor: pointer;
        text-decoration: none; }
        @media (max-width: 788px) {
          body .main__grid__item {
            margin-left: 44%; } }
        @media (max-width: 686px) {
          body .main__grid__item {
            margin-left: 30%; } }
        @media (max-width: 558px) {
          body .main__grid__item {
            margin-left: 25%; } }
        @media (max-width: 500px) {
          body .main__grid__item {
            margin-left: 0; } }
        body .main__grid__item:hover {
          color: var(--colorEight); }
        body .main__grid__item:hover body .main__grid__item__foto {
          transform: scale(1.1); }
        body .main__grid__item-text {
          color: var(--colorTen);
          font-size: 0.8rem;
          font-family: var(--font-family-base); }
        body .main__grid__item__foto {
          position: absolute;
          top: 5%;
          left: 65%;
          transition: transform 0.3s ease; }
    body .main__markets {
      color: var(--colorOne);
      order: 5;
      width: 100%;
      max-width: 1440px;
      margin-left: 90px;
      font-family: var(--font-family-base);
      padding-bottom: 100px; }
      @media (max-width: 753px) {
        body .main__markets {
          margin-left: 10px; } }
      body .main__markets h2 {
        max-width: 210px;
        max-height: 80px;
        font-size: 3.4rem; }
        @media (max-width: 753px) {
          body .main__markets h2 {
            font-size: 1.4rem; } }
      body .main__markets__table__header {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        padding: 10px;
        color: var(--colorTen); }
        @media (max-width: 753px) {
          body .main__markets__table__header {
            font-size: 0.8rem; } }
      body .main__markets__table-row {
        display: grid;
        position: relative;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        padding: 10px;
        color: var(--colorOne); }
        body .main__markets__table-row__contract {
          position: relative;
          top: 0%;
          left: 8%; }
          body .main__markets__table-row__contract::before {
            content: "";
            position: absolute;
            top: -20%;
            left: -8%;
            width: 36px;
            aspect-ratio: 1; }
            @media (max-width: 1360px) {
              body .main__markets__table-row__contract::before {
                width: 24px;
                aspect-ratio: 1;
                top: -8%;
                left: -8%; } }
            @media (max-width: 945px) {
              body .main__markets__table-row__contract::before {
                width: 14px;
                aspect-ratio: 1;
                top: 20%;
                left: -8%; } }
            @media (max-width: 578px) {
              body .main__markets__table-row__contract::before {
                width: 10px;
                aspect-ratio: 1;
                top: 25%;
                left: -8%; } }
            @media (max-width: 397px) {
              body .main__markets__table-row__contract::before {
                width: 10px;
                aspect-ratio: 1;
                top: 25%;
                left: -11%; } }
          body .main__markets__table-row__contract.n1::before {
            background: url("../icons/market1.webp") center/contain no-repeat; }
          body .main__markets__table-row__contract.n2::before {
            background: url("../icons/market2.webp") center/contain no-repeat; }
          body .main__markets__table-row__contract.n3::before {
            background: url("../icons/market3.webp") center/contain no-repeat; }
          body .main__markets__table-row__contract.n4::before {
            background: url("../icons/market4.webp") center/contain no-repeat; }
          body .main__markets__table-row__contract.n5::before {
            background: url("../icons/market5.webp") center/contain no-repeat; }
        @media (max-width: 753px) {
          body .main__markets__table-row {
            font-size: 0.8rem; } }
        body .main__markets__table-rownegative {
          color: var(--colorThirteen); }
      body .main__markets__tabs {
        display: flex;
        align-items: center;
        position: relative; }
        body .main__markets__tabs__tab {
          color: var(--colorTen);
          background: none;
          border: none;
          font-family: var(--font-family-base);
          cursor: pointer;
          font-size: 1.5rem;
          transition: color 0.2s ease; }
          @media (max-width: 753px) {
            body .main__markets__tabs__tab {
              font-size: 0.8rem; } }
          body .main__markets__tabs__tab:active {
            color: var(--colorOne);
            border-bottom: 3px solid var(--colorEight); }
        body .main__markets__tabs__tab:first-child {
          color: var(--colorOne) !important;
          border-bottom: 3px solid var(--colorEight); }
        body .main__markets__tabs-button {
          background: none;
          border: none;
          color: var(--colorOne);
          cursor: pointer;
          font-family: var(--font-family-base);
          white-space: nowrap;
          margin-left: 89%; }
          @media (max-width: 1302px) {
            body .main__markets__tabs-button {
              margin-left: 81%; } }
          @media (max-width: 763px) {
            body .main__markets__tabs-button {
              display: none; } }
        body .main__markets__tabs-m {
          text-decoration: none;
          color: var(--colorOne);
          transition: color;
          position: relative; }
          body .main__markets__tabs-m::after {
            content: ">";
            position: absolute;
            top: 0;
            left: 112%;
            width: 15px;
            aspect-ratio: 1; }
          body .main__markets__tabs-m:hover {
            color: var(--colorEight); }
        body .main__markets__tabshr {
          display: flex;
          width: 100%;
          margin-left: 0;
          max-width: 1440px;
          margin-top: -2px;
          background-color: var(--colorTen);
          color: var(--colorTen); }
    body .main__exchange {
      display: flex;
      position: relative;
      justify-content: center;
      align-items: center;
      text-align: center;
      order: 7;
      color: var(--colorOne);
      font-size: 4rem;
      font-family: var(--font-family-base);
      width: 100%;
      background-color: var(--colorSix); }
      @media (max-width: 901px) {
        body .main__exchange {
          font-size: 2rem; } }
      @media (max-width: 500px) {
        body .main__exchange {
          font-size: 1.5rem; } }
      @media (max-width: 375px) {
        body .main__exchange {
          font-size: 1rem; } }
    body .main__gridEx {
      order: 8;
      display: grid;
      flex-wrap: wrap;
      justify-items: center;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(2, 1fr);
      width: 100%;
      margin-bottom: 100px;
      background-color: var(--colorSix); }
      body .main__gridEx__option {
        display: flex;
        margin-top: 200px;
        flex-direction: column;
        justify-items: center;
        align-items: center;
        max-width: 273px;
        max-height: 406px;
        gap: 10px 10px;
        text-decoration: none;
        color: var(--colorOne);
        font-family: var(--font-family-base);
        font-size: 0.9rem;
        white-space: nowrap;
        position: relative; }
        @media (max-width: 648px) {
          body .main__gridEx__option {
            font-size: 0.6rem; } }
        @media (max-width: 500px) {
          body .main__gridEx__option {
            font-size: 0.4rem;
            margin-top: 40px; } }
        body .main__gridEx__option::before {
          content: "";
          position: absolute;
          top: -420%;
          left: 37%;
          width: 58px;
          height: 58px;
          aspect-ratio: 1; }
          @media (max-width: 679px) {
            body .main__gridEx__option::before {
              width: 38px;
              height: 38px;
              aspect-ratio: 1; } }
          @media (max-width: 425px) {
            body .main__gridEx__option::before {
              width: 28px;
              height: 28px;
              aspect-ratio: 1; } }
        body .main__gridEx__option.n1::before {
          background: url("../icons/exchange1.webp") center/contain no-repeat; }
        body .main__gridEx__option.n2::before {
          background: url("../icons/exchange2.webp") center/contain no-repeat; }
        body .main__gridEx__option.n3::before {
          background: url("../icons/exchange3.webp") center/contain no-repeat; }
        body .main__gridEx__option.n4::before {
          background: url("../icons/exchange4.webp") center/contain no-repeat; }
        body .main__gridEx__option.n5::before {
          background: url("../icons/exchange5.webp") center/contain no-repeat; }
        body .main__gridEx__option.n6::before {
          background: url("../icons/exchange6.webp") center/contain no-repeat; }
        body .main__gridEx__option.n7::before {
          background: url("../icons/exchange7.webp") center/contain no-repeat; }
        body .main__gridEx__option.n8::before {
          background: url("../icons/exchange8.webp") center/contain no-repeat; }
        body .main__gridEx__option-modification {
          display: flex;
          justify-items: center;
          align-items: center;
          text-align: center;
          color: var(--colorTen);
          font-size: 0.8rem;
          white-space: normal;
          max-width: 240px;
          max-height: 96px; }
          @media (max-width: 648px) {
            body .main__gridEx__option-modification {
              font-size: 0.6rem; } }
          @media (max-width: 425px) {
            body .main__gridEx__option-modification {
              font-size: 0.4rem; } }
    body .main__spot {
      order: 9;
      display: grid;
      flex-wrap: wrap;
      grid-template-columns: repeat(3, 1fr);
      max-width: 1180px;
      max-height: 439px;
      width: 100%;
      justify-items: center;
      margin: 0 auto;
      gap: 20px;
      align-items: start; }
      @media (max-width: 1081px) {
        body .main__spot {
          gap: 5px; } }
    body .main__option {
      max-width: 378px;
      max-height: 358px;
      width: 100%;
      color: var(--colorTen); }
      @media (max-width: 1081px) {
        body .main__option {
          font-size: 0.6rem; } }
      @media (max-width: 462px) {
        body .main__option {
          font-size: 0.5rem; } }
      body .main__option .word {
        font-size: 2.5rem;
        white-space: nowrap;
        color: var(--colorOne);
        font-family: var(--font-family-base); }
        @media (max-width: 1081px) {
          body .main__option .word {
            font-size: 1.5rem; } }
        @media (max-width: 469px) {
          body .main__option .word {
            font-size: 1rem; } }
      body .main__option .modification {
        color: var(--colorOne);
        font-family: var(--font-family-base); }
      body .main__option .button {
        display: flex;
        justify-content: flex-start;
        border: none;
        background-color: var(--colorFive);
        color: var(--colorOne);
        font-size: 1rem;
        margin-top: auto;
        font-family: var(--font-family-base);
        transition: color; }
        body .main__option .button:hover {
          color: var(--colorEight); }
    body .main__telephone {
      margin-top: 100px;
      order: 10;
      max-height: 672px;
      width: 100%;
      display: flex;
      justify-content: space-between;
      background-color: var(--colorSix);
      flex-wrap: wrap; }
      body .main__telephone__trade {
        color: var(--colorOne);
        font-family: var(--font-family-base);
        font-size: 3.5rem;
        align-self: center;
        padding-left: 50px;
        min-width: 300px;
        flex: 1; }
        @media (max-width: 1134px) {
          body .main__telephone__trade {
            font-size: 2.5rem; } }
        @media (max-width: 996px) {
          body .main__telephone__trade {
            font-size: 1.5rem; } }
        @media (max-width: 847px) {
          body .main__telephone__trade {
            font-size: 1rem; } }
        @media (max-width: 480px) {
          body .main__telephone__trade {
            font-size: 0.9rem; } }
      body .main__telephone__tel {
        display: flex;
        width: 100%;
        height: auto;
        max-width: 600px;
        max-height: 601px; }
        body .main__telephone__tel img {
          width: 100%;
          height: auto;
          object-fit: contain; }
        @media (max-width: 1134px) {
          body .main__telephone__tel {
            width: 500px;
            height: auto; } }
        @media (max-width: 996px) {
          body .main__telephone__tel {
            width: 400px;
            height: auto; } }
        @media (max-width: 736px) {
          body .main__telephone__tel {
            width: 150px;
            height: auto; } }
        @media (max-width: 480px) {
          body .main__telephone__tel {
            width: 50px;
            height: auto; } }
    body .main__leib {
      order: 11;
      flex: 0 0 100%;
      position: relative;
      margin-top: 10%;
      max-height: 128px;
      height: 100%;
      width: 100%;
      overflow: hidden;
      white-space: nowrap;
      background-color: var(--colorSix); }
      body .main__leib__container {
        display: inline-flex;
        align-items: center;
        animation: ticker 25s linear infinite; }
        body .main__leib__container__item {
          flex: 0 0 auto;
          margin-right: 100px; }
          @media (max-width: 800px) {
            body .main__leib__container__item {
              width: 100px;
              height: auto; } }
@keyframes ticker {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(-50%); } }
    body .main__faq {
      order: 12;
      width: 100%;
      margin-top: 50px;
      padding: 1rem;
      box-sizing: border-box; }
      body .main__faq__mod {
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--colorOne);
        font-family: var(--font-family-base);
        font-size: 2rem; }
        body .main__faq__mod-more {
          font-size: 0.9rem;
          text-decoration: none;
          color: var(--colorOne);
          transition: color;
          margin-right: 10px;
          align-items: center;
          position: relative; }
          body .main__faq__mod-more:hover {
            color: var(--colorEight); }
          body .main__faq__mod-more::after {
            content: ">";
            position: absolute;
            top: 0%;
            left: 120%;
            width: 10px;
            aspect-ratio: 1;
            color: var(--colorOne);
            transition: color; }
            body .main__faq__mod-more::after::after :hover {
              color: var(--colorEight); }
      body .main__faq h2 {
        margin-bottom: 1rem; }
      body .main__faq .faq-item {
        border-bottom: 1px solid #333;
        padding: 0.5rem 0; }
      body .main__faq .submenu-toggle {
        display: none; }
      body .main__faq .faq-question {
        display: block;
        position: relative;
        padding: 0.5rem 2rem 0.5rem 0;
        cursor: pointer;
        font-size: 1rem;
        color: var(--colorOne);
        font-family: var(--font-family-base);
        transition: color; }
        body .main__faq .faq-question:hover {
          color: var(--colorEight); }
        body .main__faq .faq-question::after {
          content: ">";
          position: absolute;
          right: 1rem;
          top: 50%;
          transform: translateY(-50%);
          font-size: 1.2rem;
          color: var(--colorOne); }
      body .main__faq .submenu {
        list-style: none;
        padding-left: 1rem;
        display: none; }
        body .main__faq .submenu li {
          margin: 0.3rem 0; }
          body .main__faq .submenu li a {
            color: var(--colorOne);
            text-decoration: none; }
      body .main__faq .submenu-toggle:checked + .faq-question::after {
        content: "<"; }
      body .main__faq .submenu-toggle:checked + .faq-question + .submenu {
        display: block; }
  body .footer {
    display: flex;
    flex-direction: column;
    max-width: 1440px;
    width: 100%;
    margin-top: 100px; }
    body .footer__logo {
      order: 13;
      color: var(--colorOne);
      font-family: var(--font-family-base);
      font-size: 1rem; }
    body .footer__grid {
      order: 14;
      display: grid;
      flex-wrap: wrap;
      grid-template-columns: repeat(5, 1fr);
      justify-items: center;
      justify-content: space-between;
      margin-top: 50px;
      width: 100%; }
      @media (max-width: 501px) {
        body .footer__grid {
          grid-template-columns: repeat(3, 1fr); } }
      body .footer__grid__m {
        color: var(--colorOne);
        font-family: var(--font-family-base);
        font-size: 1rem;
        max-width: 240px;
        max-height: 403px; }
        @media (max-width: 668px) {
          body .footer__grid__m {
            font-size: 0.8rem; } }
        body .footer__grid__m a {
          text-decoration: none;
          color: var(--colorTen);
          transition: color; }
          body .footer__grid__m a:hover {
            color: var(--colorEight); }
          @media (max-width: 668px) {
            body .footer__grid__m a {
              font-size: 0.8rem; } }
        body .footer__grid__m-modificationButton {
          max-width: 240px;
          max-height: 48px;
          margin-top: 10px;
          width: 80%;
          height: auto;
          border-radius: 5px;
          background-color: var(--colorOne);
          border: 1px solid var(--colorOne);
          transition: background-color, border, color; }
          body .footer__grid__m-modificationButton:hover {
            background-color: var(--colorFive);
            border: 1px solid var(--colorEight);
            color: var(--colorEight); }
