@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: rgb(255, 255, 255);
  font-size: 16px;
  background-color: rgb(25, 25, 25);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

.select-wrap {
  position: relative;
}
.select-wrap::after {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  content: "";
  display: block;
  z-index: 2;
  width: 25px;
  aspect-ratio: 1/1;
  background-image: url("../../images/arrow.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  pointer-events: none;
}

input[type=submit],
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: none;
  outline: none;
  background-color: transparent;
  color: rgb(255, 255, 255);
  border: 1px solid rgb(190, 190, 190);
  padding: 10px;
  border-radius: 5px;
}
select option {
  color: rgb(51, 51, 51);
}

section {
  padding: 40px 0;
}
section.section-bottom {
  padding-bottom: 0;
}

.contents-wrapper {
  width: calc(100% - 40px);
  max-width: 375px;
  margin: 0 auto;
}
.contents-wrapper.big {
  max-width: 1500px;
  width: 100%;
}
@media (max-width: 767px) {
  .contents-wrapper.big {
    font-size: 0.85rem;
  }
}
.contents-wrapper.main {
  width: calc(100% - 100px);
  max-width: 1200px;
}
@media (max-width: 767px) {
  .contents-wrapper.main {
    font-size: 0.85rem;
    width: calc(100% - 40px);
  }
}
.contents-wrapper.padding-right {
  padding-right: 150px;
}
@media (max-width: 1500px) {
  .contents-wrapper.padding-right {
    padding-right: calc((100vw - 1200px) / 2);
  }
}
@media (max-width: 1300px) {
  .contents-wrapper.padding-right {
    padding-right: 50px;
  }
}
@media (max-width: 767px) {
  .contents-wrapper.padding-right {
    padding-right: 20px;
  }
}
.contents-wrapper.padding-left {
  padding-left: 150px;
}
@media (max-width: 1500px) {
  .contents-wrapper.padding-left {
    padding-left: calc((100vw - 1200px) / 2);
  }
}
@media (max-width: 1300px) {
  .contents-wrapper.padding-left {
    padding-left: 50px;
  }
}
@media (max-width: 767px) {
  .contents-wrapper.padding-left {
    padding-left: 20px;
  }
}

.ipad-block {
  display: none;
}
@media (max-width: 1023px) {
  .ipad-block {
    display: block;
  }
}

@media (max-width: 1023px) {
  .ipad-none {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
.main-contents {
  text-align: left;
  word-wrap: break-word;
  line-height: 200%;
}
.main-contents p:not(:last-child) {
  margin-bottom: 15px;
}
.main-contents img:not(.emoji) {
  width: 50% !important;
  height: auto !important;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .main-contents img:not(.emoji) {
    width: 100% !important;
  }
}

.left-float {
  float: left;
}

.right-float {
  float: right;
}

.clear {
  clear: both;
}

img, iframe {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

a {
  text-decoration: none;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

a:hover {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.color-black {
  color: rgb(0, 0, 0);
}

.color-white {
  color: rgb(255, 255, 255);
}

table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  border-spacing: 0;
}

.block-item {
  display: block;
}

.inlineblock-item {
  display: inline-block;
}

.inline-item {
  display: inline;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.right-flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.white-space {
  white-space: nowrap;
}

figure {
  margin: 0;
  padding: 0;
}

.main-contants-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 5;
  max-width: 375px;
  margin: 0 calc((100% - 375px - 250px - 100px) / 2) 0 auto;
  color: rgb(255, 255, 255);
  background-color: rgb(25, 25, 25);
}
@media (max-width: 1023px) {
  .main-contants-wrapper {
    margin-right: 50px;
  }
}
@media (max-width: 767px) {
  .main-contants-wrapper {
    max-width: 100%;
    margin-right: 0;
  }
}

.nobiq-header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  padding: 15px 0 0 20px;
  z-index: 1000;
}
.nobiq-header .header-logo {
  width: 53px;
}

.drawer--right .drawer-hamburger {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  background-color: rgb(162, 143, 99);
  width: 44px;
  aspect-ratio: 1/1;
  padding: 0;
  text-transform: uppercase;
  font-size: 10px;
  font-style: italic;
  font-weight: 800;
  color: rgb(255, 255, 255);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid rgb(162, 143, 99);
}
.drawer--right .drawer-hamburger:hover {
  background-color: rgb(255, 255, 255);
  color: rgb(162, 143, 99);
}
.drawer--right nav.drawer-nav {
  position: absolute;
  width: 100%;
  right: 0;
  height: 100vh;
  padding: 70px 30px 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translate(100%);
          transform: translate(100%);
  background-color: rgb(162, 143, 99);
  font-weight: 800;
  text-transform: uppercase;
}
.drawer--right .product-menu-list li {
  -webkit-transform: skew(-15deg);
          transform: skew(-15deg);
}
.drawer--right .product-menu-list li:not(:last-child) {
  margin-bottom: 20px;
}
.drawer--right .product-menu-list a {
  color: rgb(255, 255, 255);
}
.drawer--right .navi-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 85%;
}
.drawer--right .sns-wrapper {
  margin: 100px 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 30px;
}
.drawer--right .sns-wrapper .instagram {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgb(255, 255, 255);
  text-align: center;
  width: 100%;
}
.drawer--right .sns-wrapper a {
  color: rgb(255, 255, 255);
  font-size: 0.8rem;
  font-weight: 800;
}
.drawer--right .sns-wrapper a span {
  margin-bottom: 5px;
  display: inline-block;
  -webkit-transform: skew(-15deg);
          transform: skew(-15deg);
}
.drawer--right .sns-wrapper img {
  width: 22px;
}
.drawer--right.drawer-open button.drawer-hamburger {
  right: 0;
  padding-top: 10px;
}
.drawer--right.drawer-open button.drawer-hamburger:hover {
  background-color: rgb(162, 143, 99);
}
.drawer--right.drawer-open button.drawer-hamburger::before {
  content: "";
  width: 17px;
  aspect-ratio: 1/1;
  background-image: url("../../images/close.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.drawer--right.drawer-open button.drawer-hamburger span {
  opacity: 0;
}
.drawer--right.drawer-open nav.drawer-nav {
  -webkit-transform: translate(0);
          transform: translate(0);
}

.hamburger-btn {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.hamburger-btn.is-show {
  opacity: 1;
  visibility: visible;
}

.main-site-wrapper {
  position: relative;
  overflow: hidden;
}

.main-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100000;
}
.main-header .header-logo {
  width: 175px;
  margin: 10px 20px;
}
.main-header .header-logo a {
  font-weight: 700;
  color: rgb(255, 255, 255);
}
.main-header nav.drawer-nav {
  max-width: 375px;
}

.circle-box {
  width: 80px;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../../images/nobiq/circle-bg.svg");
  font-weight: 700;
  text-align: center;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
}
.circle-box .big {
  display: block;
  width: 100%;
  font-size: 1.1rem;
  line-height: 1em;
}
.circle-box .small {
  font-size: 0.9rem;
}

.shop-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17px;
  padding: 20px 5px;
  font-size: 0.9rem;
  font-weight: 700;
  background-color: rgb(255, 255, 255);
  border-radius: 50px;
  width: 100%;
}
.shop-btn::after {
  margin-top: 3px;
  content: "";
  display: block;
  width: 10px;
  aspect-ratio: 1/1;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.shop-btn:hover::after {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
.shop-btn.nobiq {
  color: rgb(162, 143, 99);
  border: 1px solid rgb(113, 94, 52);
}
.shop-btn.nobiq::after {
  background-color: rgb(162, 143, 99);
}

.buy-btn {
  width: 100%;
  padding: 10px;
  height: 60px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  color: rgb(255, 255, 255);
  font-weight: 700;
  font-size: 1.4rem;
  gap: 25px;
}
.buy-btn img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin: 0;
  width: 35px;
}
.buy-btn:hover img {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
.buy-btn.nobiq {
  background-image: url("../../images/nobiq/btn-bg.png");
}
.buy-btn.hepta {
  -webkit-filter: drop-shadow(0 0 28px rgba(0, 140, 255, 0.47));
          filter: drop-shadow(0 0 28px rgba(0, 140, 255, 0.47));
  background-image: url("../../images/hepta/btn-bg.png");
}
.buy-btn.hepta:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.accordion-wrapper {
  background-color: rgb(255, 255, 255);
}
.accordion-wrapper:not(:last-child) {
  margin-bottom: 15px;
}
.accordion-wrapper .trigger {
  color: rgb(162, 143, 99);
  padding: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 0.9rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.accordion-wrapper .trigger::before {
  content: "Q";
  width: 32px;
  font-family: "Montserrat", sans-serif;
  color: rgb(255, 255, 255);
  border-radius: 50%;
  font-weight: 600;
  font-style: italic;
  font-size: 1.1rem;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgb(162, 143, 99);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.accordion-wrapper .trigger span {
  pointer-events: none;
}
.accordion-wrapper .trigger .text {
  width: calc(100% - 32px - 10px - 10px);
}
.accordion-wrapper .trigger.is-open {
  background-color: rgb(162, 143, 99);
  color: rgb(255, 255, 255);
}
.accordion-wrapper .trigger.is-open::before {
  background-color: rgb(255, 255, 255);
  color: rgb(162, 143, 99);
}
.accordion-wrapper .trigger.is-open .plus::before, .accordion-wrapper .trigger.is-open .plus::after {
  background-color: rgb(255, 255, 255);
}
.accordion-wrapper .trigger.is-open .plus::after {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.accordion-wrapper .plus {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 10px;
  aspect-ratio: 1/1;
}
.accordion-wrapper .plus::before, .accordion-wrapper .plus::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: rgb(162, 143, 99);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.accordion-wrapper .plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.accordion-wrapper .content {
  -webkit-transition: max-height 0.3s;
  transition: max-height 0.3s;
  overflow: hidden;
  max-height: 0;
  color: rgb(162, 143, 99);
}
.accordion-wrapper .content.is-open {
  max-height: var(--max-height);
}
.accordion-wrapper .content .inner-box {
  font-size: 0.9rem;
  padding: 10px 15px;
}

.copy-right {
  padding: 10px;
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  background-color: rgb(0, 0, 0);
}

.main-fv-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  max-height: 800px;
  background-image: url("../../images/fv-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-position: 15%;
}
@media (max-width: 767px) {
  .main-fv-section {
    height: 400px;
  }
}
.main-fv-section .contents-wrapper {
  height: 100%;
}

.main-fv-wrapper {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main-fv-wrapper .product-menu-list {
  -ms-flex-item-align: end;
      align-self: flex-end;
  font-weight: 800;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .main-fv-wrapper .product-menu-list {
    display: none;
  }
}
.main-fv-wrapper .product-menu-list a {
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
}

.main-fv-title {
  color: rgb(255, 255, 255);
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
}
@media (max-width: 767px) {
  .main-fv-title {
    width: 100%;
  }
}
.main-fv-title .en {
  display: block;
  margin-bottom: 5px;
  font-size: 5rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: left;
  -webkit-transform: skew(-15deg);
          transform: skew(-15deg);
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .main-fv-title .en {
    font-size: 2.5rem;
    text-align: center;
  }
}
.main-fv-title .beige {
  color: rgb(162, 143, 99);
}
.main-fv-title .ja {
  display: block;
  text-align: right;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .main-fv-title .ja {
    font-size: 1.2rem;
    text-align: center;
  }
}

.top-company-section {
  padding: 150px 0;
}
@media (max-width: 767px) {
  .top-company-section {
    padding: 100px 0;
  }
}
.top-company-section .company-title {
  margin-bottom: 50px;
  text-align: center;
  font-weight: 800;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .top-company-section .company-title {
    font-size: 1.3rem;
  }
}
.top-company-section .company-title .bg-text {
  display: inline-block;
  font-size: 2.3rem;
  padding: 0 20px;
  margin: 10px 10px 0;
  background-color: rgb(162, 143, 99);
}
@media (max-width: 767px) {
  .top-company-section .company-title .bg-text {
    font-size: 1.8rem;
  }
}
.top-company-section .company-text {
  line-height: 1.8;
  text-align: center;
}

.main-top-title {
  margin-bottom: 45px;
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .main-top-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
.main-top-title span {
  display: inline-block;
  -webkit-transform: skew(-15deg);
          transform: skew(-15deg);
}
.main-top-title span::first-letter {
  color: rgb(162, 143, 99);
}
.main-top-title.left {
  text-align: left;
}

.main-top-btn {
  display: block;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 50px;
  padding: 10px;
  text-align: center;
  max-width: 180px;
  margin: 50px auto 0;
  font-weight: 800;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .main-top-btn {
    margin-top: 40px;
  }
}
.main-top-btn span {
  display: inline-block;
  -webkit-transform: skew(-15deg);
          transform: skew(-15deg);
}
.main-top-btn.right {
  margin-right: 0;
}
.main-top-btn:hover {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.7));
          filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.7));
}

.top-link-section {
  padding: 0;
}

.top-link-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
}
@media (max-width: 767px) {
  .top-link-wrapper {
    background-color: transparent;
  }
}
.top-link-wrapper a {
  -webkit-transform: skew(-15deg);
          transform: skew(-15deg);
  width: 50%;
  aspect-ratio: 750/466;
  min-height: 350px;
}
@media (max-width: 767px) {
  .top-link-wrapper a {
    width: 90%;
    margin: auto;
    overflow: hidden;
  }
}
.top-link-wrapper a .inner-bg {
  padding: 30px 50px;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transform: skew(15deg);
          transform: skew(15deg);
}
@media (max-width: 767px) {
  .top-link-wrapper a .inner-bg {
    padding-block: 50px;
  }
}
.top-link-wrapper a.hepta {
  background-color: rgb(40, 40, 40);
}
@media (max-width: 767px) {
  .top-link-wrapper a.hepta {
    -webkit-transform: skew(15deg);
            transform: skew(15deg);
  }
}
.top-link-wrapper a.hepta .inner-bg {
  background-image: url("../../images/hepta-link.png");
}
@media (max-width: 767px) {
  .top-link-wrapper a.hepta .inner-bg {
    background-position: left;
    padding-right: 15vw;
    -webkit-transform: skew(-15deg) scale(1.2);
            transform: skew(-15deg) scale(1.2);
  }
}
.top-link-wrapper a.hepta .inner-text {
  margin: 20px 0 0 auto;
}
@media (max-width: 1023px) {
  .top-link-wrapper a.hepta .inner-text {
    margin-top: 0;
  }
}
.top-link-wrapper a.hepta .more-text {
  text-align: right;
}
.top-link-wrapper a.nobiq {
  background-color: rgb(0, 0, 0);
}
.top-link-wrapper a.nobiq .inner-bg {
  background-image: url("../../images/nobiq-link.png");
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 767px) {
  .top-link-wrapper a.nobiq .inner-bg {
    -webkit-transform: skew(15deg) scale(1.2);
            transform: skew(15deg) scale(1.2);
  }
}
.top-link-wrapper a.nobiq .more-text {
  text-align: left;
}
.top-link-wrapper a:hover .more-text {
  color: rgb(162, 143, 99);
}
.top-link-wrapper .inner-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 800;
  color: rgb(255, 255, 255);
  font-size: 1.4rem;
  text-align: center;
}
@media (max-width: 767px) {
  .top-link-wrapper .inner-text {
    font-size: 1rem;
  }
}
.top-link-wrapper .inner-text img {
  width: auto;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 10px 0 20px;
}
@media (max-width: 1190px) {
  .top-link-wrapper .inner-text img {
    height: 50px;
  }
}
@media (max-width: 767px) {
  .top-link-wrapper .inner-text img {
    height: 35px;
  }
}
.top-link-wrapper .more-text {
  display: block;
  -webkit-transform: skew(-15deg);
          transform: skew(-15deg);
  font-size: 1.1rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 767px) {
  .top-link-wrapper .more-text {
    font-size: 0.9rem;
  }
}

.product-list.top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px 50px;
}
.product-list.top li {
  width: calc((100% - 100px) / 3);
}
@media (max-width: 1023px) {
  .product-list.top li {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
}
.product-list.top .image-box {
  margin-bottom: 20px;
}
@media (max-width: 1023px) {
  .product-list.top .image-box {
    width: 45%;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .product-list.top .image-box {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .product-list.top .text-box {
    width: calc(55% - 30px);
  }
}
@media (max-width: 767px) {
  .product-list.top .text-box {
    width: 100%;
  }
}
.product-list.top .product-detail span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.product-list.top .product-link .page {
  display: none;
}
@media (max-width: 1023px) {
  .product-list.page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 40px;
  }
}
.product-list.page li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
}
@media (max-width: 1023px) {
  .product-list.page li {
    width: calc((100% - 50px) / 2);
  }
}
@media (max-width: 767px) {
  .product-list.page li {
    width: 100%;
  }
}
.product-list.page li:not(:last-child) {
  margin-bottom: 50px;
}
@media (max-width: 1023px) {
  .product-list.page li:not(:last-child) {
    margin-bottom: 0;
  }
}
.product-list.page .image-box {
  width: 350px;
}
@media (max-width: 1023px) {
  .product-list.page .image-box {
    width: 100%;
  }
}
.product-list.page .text-box {
  width: calc(100% - 350px - 30px);
}
@media (max-width: 1023px) {
  .product-list.page .text-box {
    width: 100%;
  }
}
.product-list.page .product-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}
.product-list.page .product-link a {
  min-width: 220px;
}
@media (max-width: 1023px) {
  .product-list.page .product-link a {
    min-width: auto;
    width: 100%;
  }
}
.product-list img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 330/250;
}
.product-list .product-title {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(255, 255, 255);
  font-weight: 500;
  font-size: 1.1rem;
}
.product-list .product-data:not(:last-child) {
  margin-bottom: 10px;
}
.product-list .product-data span:not(:last-child) {
  margin-right: 10px;
}
.product-list .product-detail:not(:last-child) {
  margin-bottom: 15px;
}
.product-list .product-link a {
  display: block;
  color: rgb(255, 255, 255);
  font-weight: 500;
  font-size: 1.1rem;
  text-align: center;
  padding: 5px 10px;
  border-radius: 50px;
  border: 1px solid rgb(255, 255, 255);
}
.product-list .product-link a:hover {
  background-color: rgb(255, 255, 255);
  color: rgb(25, 25, 25);
}
.product-list .product-link a span {
  display: inline-block;
  -webkit-transform: skew(-15deg);
          transform: skew(-15deg);
}

@media (max-width: 767px) {
  .top-news-section .contents-wrapper.big.padding-right {
    padding: 0;
  }
}

.top-news-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px 50px;
}
.top-news-wrapper .side-image {
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
  width: 50%;
}
@media (max-width: 1023px) {
  .top-news-wrapper .side-image {
    width: calc(50% - 50px);
  }
}
@media (max-width: 767px) {
  .top-news-wrapper .side-image {
    width: 100%;
  }
}
.top-news-wrapper .news-list-wrapper {
  width: calc(50% - 50px);
}
@media (max-width: 1023px) {
  .top-news-wrapper .news-list-wrapper {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .top-news-wrapper .news-list-wrapper {
    padding: 0 20px;
    width: 100%;
  }
}

.news-list.top li:not(:last-child) {
  margin-bottom: 25px;
}
.news-list.page a {
  border-bottom: 1px solid rgb(68, 68, 68);
  padding: 25px 0;
}
.news-list.page a::after {
  content: "";
  width: 25px;
  aspect-ratio: 1/1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url("../../images/arrow.svg");
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.news-list.page a:hover::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.news-list.page .title {
  width: calc(100% - 80px - 40px - 25px);
}
.news-list a {
  color: rgb(255, 255, 255);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
}
.news-list .time {
  width: 80px;
}
.news-list .year {
  font-size: 0.8rem;
}
.news-list .day {
  font-weight: 600;
  font-size: 1.1rem;
}
.news-list .title {
  width: calc(100% - 80px - 20px);
}
.news-list .title span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer-contact-section {
  padding-top: 250px;
}
@media (max-width: 1100px) {
  .footer-contact-section {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .footer-contact-section {
    padding-top: 50px;
    padding-bottom: 120px;
  }
}
.footer-contact-section .contents-wrapper {
  position: relative;
}
.footer-contact-section .contents-wrapper.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1023px) {
  .footer-contact-section .contents-wrapper.main {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.footer-contact-section.contact {
  padding: 250px 0 70px;
}
@media (max-width: 767px) {
  .footer-contact-section.contact {
    padding: 50px 0 130px;
  }
}
.footer-contact-section.contact .title-wrapper {
  display: contents;
}
.footer-contact-section.contact .title-wrapper p {
  width: 100%;
  text-align: center;
}
.footer-contact-section.contact .footer-item {
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
.footer-contact-section.contact br {
  display: none;
}
@media (max-width: 767px) {
  .footer-contact-section.contact br {
    display: block;
  }
}
.footer-contact-section.contact .link-wrapper,
.footer-contact-section.contact .main-top-title {
  display: none;
}
.footer-contact-section .footer-circle {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-20%, -50%);
          transform: translate(-20%, -50%);
  width: 50%;
}
@media (max-width: 1250px) {
  .footer-contact-section .footer-circle {
    -webkit-transform: translate(-30%, -50%);
            transform: translate(-30%, -50%);
  }
}
@media (max-width: 1023px) {
  .footer-contact-section .footer-circle {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .footer-contact-section .footer-circle {
    top: 0;
    left: 50%;
    width: 100%;
    -webkit-transform: translate(-50%, -25%);
            transform: translate(-50%, -25%);
  }
}
.footer-contact-section .footer-item {
  position: absolute;
  width: 90%;
  max-width: 1200px;
  bottom: -120px;
  right: -80px;
}
@media (max-width: 1023px) {
  .footer-contact-section .footer-item {
    width: 110%;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
@media (max-width: 767px) {
  .footer-contact-section .footer-item {
    bottom: -170px;
  }
}
.footer-contact-section .title-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1023px) {
  .footer-contact-section .title-wrapper {
    display: block;
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .footer-contact-section .title-wrapper {
    width: 100%;
  }
}
.footer-contact-section .title-wrapper p {
  font-size: 2.3rem;
  font-weight: 600;
}
@media (max-width: 1023px) {
  .footer-contact-section .title-wrapper p {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .footer-contact-section .title-wrapper p {
    text-align: center;
  }
}
.footer-contact-section .main-top-title {
  margin-bottom: 0;
  color: rgb(162, 143, 99);
  -webkit-writing-mode: tb-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: tb-rl;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}
@media (max-width: 1023px) {
  .footer-contact-section .main-top-title {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    -webkit-transform: translate(0);
            transform: translate(0);
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .footer-contact-section .main-top-title {
    text-align: center;
  }
}
.footer-contact-section .main-top-title span {
  -webkit-transform: skew(15deg);
          transform: skew(15deg);
}
@media (max-width: 1023px) {
  .footer-contact-section .main-top-title span {
    -webkit-transform: skew(-15deg);
            transform: skew(-15deg);
  }
}
.footer-contact-section .link-wrapper {
  text-align: center;
}

.main-footer {
  padding: 100px 0 20px;
  background-color: rgb(0, 0, 0);
}
@media (max-width: 767px) {
  .main-footer {
    padding-top: 80px;
  }
}
.main-footer .contents-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .main-footer .contents-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.main-footer .footer-logo {
  margin-bottom: 30px;
  font-size: 1.1rem;
  font-weight: 700;
}
.main-footer .product-menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
  font-weight: 500;
  text-transform: uppercase;
}
@media (max-width: 1023px) {
  .main-footer .product-menu-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .main-footer .product-menu-list {
    display: none;
  }
}
.main-footer .copy {
  font-size: 0.8rem;
  width: 100%;
  text-align: center;
}
.main-footer .copy span {
  margin-right: 10px;
}
.main-footer .copy a {
  color: rgb(255, 255, 255);
  text-transform: capitalize;
}

.mv-section {
  padding-top: 80px;
  height: 550px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-position: right;
  background-image: url("../../images/mv-image.jpg");
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .mv-section {
    height: 300px;
  }
}
.mv-section .main-top-title {
  font-size: 5rem;
  color: rgb(162, 143, 99);
  margin-bottom: 0;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
}
@media (max-width: 767px) {
  .mv-section .main-top-title {
    font-size: 2.2rem;
  }
}

.company-policy-section .company-policy-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.company-policy-section .title-wrapper p {
  font-weight: 800;
  font-size: 2.3rem;
}
@media (max-width: 1230px) {
  .company-policy-section .title-wrapper p {
    font-size: 2rem;
  }
}
@media (max-width: 1100px) {
  .company-policy-section .title-wrapper p {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .company-policy-section .title-wrapper p {
    font-size: 1.6rem;
  }
}
.company-policy-section .text-box {
  width: 40%;
}
@media (max-width: 1230px) {
  .company-policy-section .text-box {
    width: 45%;
  }
}
@media (max-width: 1023px) {
  .company-policy-section .text-box {
    width: 100%;
  }
}

.company-service-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media (max-width: 1023px) {
  .company-service-wrapper {
    gap: 30px;
  }
}
.company-service-wrapper .image-box {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 30px;
}
@media (max-width: 1023px) {
  .company-service-wrapper .image-box {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .company-service-wrapper .image-box {
    width: 100%;
  }
}
.company-service-wrapper .image-box img {
  width: calc((100% - 30px) / 2);
}
@media (max-width: 1023px) {
  .company-service-wrapper .image-box img {
    width: calc((100% - 10px) / 2);
  }
}
.company-service-wrapper .image-box img:first-child {
  margin-bottom: 50px;
}
.company-service-wrapper .text-box {
  width: calc(55% - 50px);
}
@media (max-width: 1023px) {
  .company-service-wrapper .text-box {
    width: calc(55% - 30px);
  }
}
@media (max-width: 767px) {
  .company-service-wrapper .text-box {
    width: 100%;
  }
}

@media (max-width: 1023px) {
  .company-profile-section .contents-wrapper {
    padding-left: 0;
  }
}

.company-profile-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
  gap: 50px;
}
@media (max-width: 1040px) {
  .company-profile-wrapper {
    gap: 30px;
  }
}
.company-profile-wrapper .image-box {
  width: 45%;
}
@media (max-width: 1023px) {
  .company-profile-wrapper .image-box {
    width: 100%;
    height: 400px;
  }
  .company-profile-wrapper .image-box img {
    -o-object-position: 50% 70%;
       object-position: 50% 70%;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
}
@media (max-width: 767px) {
  .company-profile-wrapper .image-box {
    height: 250px;
  }
}
.company-profile-wrapper .text-box {
  width: calc(55% - 50px);
}
@media (max-width: 1040px) {
  .company-profile-wrapper .text-box {
    width: calc(55% - 30px);
  }
}
@media (max-width: 1023px) {
  .company-profile-wrapper .text-box {
    width: 100%;
    padding-inline: 50px;
  }
}
@media (max-width: 767px) {
  .company-profile-wrapper .text-box {
    padding-inline: 20px;
  }
}
.company-profile-wrapper .main-top-title {
  margin-bottom: 0;
}

.company-profile-table .inner-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.company-profile-table .title {
  text-align: center;
  padding: 20px 10px;
  width: 150px;
  border-bottom: 1px solid rgb(255, 255, 255);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 130px;
}
@media (max-width: 767px) {
  .company-profile-table .title {
    min-height: auto;
    width: 100px;
  }
}
.company-profile-table .contants {
  min-height: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 20px 20px;
  width: calc(100% - 150px);
  border-bottom: 1px solid rgb(66, 66, 66);
}
@media (max-width: 767px) {
  .company-profile-table .contants {
    min-height: auto;
    padding: 20px 10px;
    width: calc(100% - 100px);
  }
}

.contact-page-section {
  position: relative;
  z-index: 2;
}
.contact-page-section .contact-first-text {
  margin-bottom: 50px;
  text-align: center;
}
.contact-page-section .contact-wrapper {
  max-width: 1000px;
  margin: auto;
}
.contact-page-section .contact-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px 50px;
}
.contact-page-section .contact-inner:not(:last-child) {
  margin-bottom: 45px;
}
.contact-page-section .title {
  width: 300px;
}
.contact-page-section .title.must {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1023px) {
  .contact-page-section .title.must {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 10px;
  }
}
.contact-page-section .title.must::after {
  content: "必須";
  display: inline-block;
  padding: 5px 10px;
  background-color: rgb(162, 143, 99);
  color: rgb(255, 255, 255);
}
@media (max-width: 1023px) {
  .contact-page-section .title.must::after {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (max-width: 1023px) {
  .contact-page-section .title.must span {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.contact-page-section .input {
  width: calc(100% - 300px - 50px);
}
@media (max-width: 1023px) {
  .contact-page-section .input {
    width: 100%;
  }
}
.contact-page-section .text-common {
  display: block;
  width: 100%;
  border-radius: 5px;
  padding: 10px 20px;
}
.contact-page-section .main-top-btn {
  pointer-events: none;
  width: 290px;
}
.contact-page-section .main-top-btn.active {
  pointer-events: visible;
}

.policy-page-section {
  counter-reset: number 0;
}
.policy-page-section .contents-wrapper.main {
  max-width: 1000px;
}

.policy-first-text {
  margin-bottom: 50px;
}

.policy-wrapper {
  counter-increment: number 1;
}
.policy-wrapper:not(:last-child) {
  margin-bottom: 50px;
}
.policy-wrapper .polisy-title {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .policy-wrapper .polisy-title {
    margin-bottom: 10px;
  }
}
.policy-wrapper .polisy-title::before {
  content: counter(number) ".";
}
.policy-wrapper .contants {
  padding-left: 1em;
}
.policy-wrapper .contants p:not(:last-child) {
  margin-bottom: 15px;
}

.news-page-section .sidebar-wrapper {
  margin-bottom: 60px;
  margin-left: auto;
  width: 200px;
}
.news-page-section .sidebar-title {
  margin-bottom: 10px;
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: 800;
}
.news-page-section .sidebar-title span {
  display: inline-block;
  -webkit-transform: skew(-15deg);
          transform: skew(-15deg);
}
.news-page-section .news-list {
  max-width: 1000px;
  margin: auto;
}

.wp-pagenavi {
  margin-top: 50px;
  text-align: center;
}
.wp-pagenavi a, .wp-pagenavi span {
  display: inline-block;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
}
.wp-pagenavi a.current, .wp-pagenavi span.current {
  border-bottom: 1px solid rgb(255, 255, 255);
}
.wp-pagenavi a.arrow::before, .wp-pagenavi span.arrow::before {
  content: "";
  vertical-align: middle;
  display: inline-block;
  width: 20px;
  aspect-ratio: 1/1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url("../../images/arrow.svg");
}
.wp-pagenavi a.arrow.left::before, .wp-pagenavi span.arrow.left::before {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.news-singe-section .single-title {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 50px;
  padding: 20px 50px;
  border-bottom: 1px solid rgb(255, 255, 255);
}
@media (max-width: 1023px) {
  .news-singe-section .single-title {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .news-singe-section .single-title {
    padding-inline: 0px;
    margin-bottom: 30px;
  }
}
.news-singe-section .year {
  font-size: 0.9rem;
}
.news-singe-section .day {
  font-weight: 800;
  font-size: 1.1rem;
}
.news-singe-section .title {
  font-size: 1.1rem;
}
.news-singe-section .image-box {
  margin-bottom: 50px;
}
.news-singe-section .main-contants {
  padding: 0 50px;
}
@media (max-width: 1023px) {
  .news-singe-section .main-contants {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .news-singe-section .main-contants {
    padding-inline: 0px;
  }
}

.post-navigation {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.post-navigation .home-link a {
  padding: 0 20px 10px;
  border-bottom: 1px solid rgb(255, 255, 255);
}
.post-navigation .home-link a:hover {
  border-color: transparent;
}
.post-navigation a {
  text-transform: uppercase;
  font-weight: 700;
  color: rgb(255, 255, 255);
}
.post-navigation a:hover .left {
  -webkit-transform: translateX(-5px) rotate(180deg);
          transform: translateX(-5px) rotate(180deg);
}
.post-navigation a:hover .right {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.post-navigation .post-nav-btn {
  width: 25px;
}
.post-navigation .arrow {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url("../../images/arrow.svg");
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.post-navigation .arrow.left {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
/*# sourceMappingURL=main.css.map */