@charset "UTF-8";
/*
Theme Name: NONSAPIENS
Theme URI:https://nonsapiens.com
Author:
Author URI: https://nonsapiens.com
Description:
Version: 1.0.0
*/
/**
 *
 *  サイト共通
 *
 */

@font-face {
  font-family: "gt_r";
  src: url("assets/font/GTZirkon-Regular.woff2") format("woff2"), url("assets/fonts/GTZirkon-Regular.woff") format("woff");
}
@font-face {
  font-family: "gt_b";
  src: url("assets/font/GTZirkon-Bold.woff2") format("woff2"), url("assets/fonts/GTZirkon-Bold.woff") format("woff");
}
* {
  margin: 0;
  padding: 0;
  line-height: calc(0.25rem + 1em + 0.25rem);
}

*,
::before,
::after {
  box-sizing: border-box;
}

*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
}

html {
  block-size: 100%;
  -webkit-text-size-adjust: none;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}
body {
  text-rendering: optimizeSpeed;
  min-block-size: 100%;
  font-family: "gt_r", sans-serif;
  background-color: #2F2F2F;
  color: #fff;
}

:where(svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}

:where(svg) {
  stroke: none;
  fill: currentColor;
}

:where(svg):where(:not([fill])) {
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
}

:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
  font-weight: normal;
}

h1 {
  font-size: 2em;
}

:where(ul, ol) {
  list-style-position: inside;
}

:where(ul, ol)[role=list] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  touch-action: manipulation;
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

@media (prefers-reduced-motion: no-preference) {
  :focus-visible {
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    transition-duration: 0.25s;
  }
}
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

:where(button, button[type], input[type=button], input[type=submit], input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}

:where(button, button[type], input[type=button], input[type=submit], input[type=reset])[disabled] {
  cursor: not-allowed;
}

input, textarea, select {
  margin: 0;
  padding: 0.8rem 1.5rem;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #666;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-size: 1rem;
}

@media screen and (min-width: 768px) {
  .show_sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .show_tabpc {
    display: none !important;
  }
}

main {
  position: relative;
}

/*----------
  PC NAV
----------*/
.pcNav {
  display: grid;
  grid-template-columns: 170px 1fr 170px;
  font-family: "gt_b", sans-serif;
  font-size: 1rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
@media screen and (min-width: 1400px) {
  .pcNav {
    grid-template-columns: 12.1428571429vw 1fr 12.1428571429vw;
    font-size: 1.1428571429vw;
  }
}
.pcNav a {
  display: block;
  color: #fff;
  text-decoration: none;
  pointer-events: auto;
}
@media (hover) {
  .pcNav a:hover {
    opacity: 0.7;
  }
}
.pcNav_item {
  grid-column: 2/3;
  display: flex;
  justify-content: center;
  list-style: none;
}
.pcNav_item a {
  padding: 2rem 0.53rem;
}
@media screen and (min-width: 1400px) {
  .pcNav_item a {
    padding: 2.2857142857vw 0.5714285714vw;
  }
}
.pcNav_shop {
  grid-column: 3/4;
  text-align: center;
}
.pcNav_shop a {
  padding: 2rem 0;
}
@media screen and (min-width: 1400px) {
  .pcNav_shop a {
    padding: 2.2857142857vw 0;
  }
}
.pcNav.hide {
  display: none;
}

/*----------
  main
----------*/
.logo {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}
.logo img {
  width: 63%;
}

section {
  margin-top: 100vh;
  position: relative;
}

.contents {
  background-color: rgba(47, 47, 47, 0.8);
  padding: 0 7.6335877863vw;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .contents {
    padding: 0 2.1428571429vw;
  }
}
.contents > li {
  border-top: 1px solid #fff;
}
.contents > li:last-child {
  border-bottom: 1px solid #fff;
}

.main_ttl {
  padding: 5.0890585242vw 0;
  font-size: 10.1781170483vw;
  font-weight: 400;
  font-family: "gt_b", sans-serif;
  transition: opacity 0.3s;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .main_ttl {
    padding: 1.75rem 0;
    font-size: 5.375rem;
  }
}
@media screen and (min-width: 1400px) {
  .main_ttl {
    padding: 2vw 0;
    font-size: 6.1428571429vw;
  }
}
.main_ttl.active {
  opacity: 1 !important;
}

.contents:hover .main_ttl:not(:hover) {
  opacity: 0.7;
}

article {
  padding: 7.6335877863vw 0 19.0839694656vw;
  display: none;
}
@media screen and (min-width: 768px) {
  article {
    padding: 3.25rem 0 7rem;
  }
}
@media screen and (min-width: 1400px) {
  article {
    padding: 3.7142857143vw 0 7.8571428571vw;
  }
}

.colBox_side {
  margin-bottom: 10.1781170483vw;
}
@media screen and (min-width: 768px) {
  .colBox_side {
    margin-bottom: 0;
  }
}
.colBox_side h3 {
  font-family: "gt_b", sans-serif;
  font-size: 5.0890585242vw;
}
@media screen and (min-width: 768px) {
  .colBox_side h3 {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1400px) {
  .colBox_side h3 {
    font-size: 1.7142857143vw;
  }
}

@media screen and (min-width: 768px) {
  .colBox {
    display: grid;
    grid-template-columns: minmax(14.375rem, 1fr) minmax(auto, 53.75rem);
  }
}
@media screen and (min-width: 1400px) {
  .colBox {
    grid-template-columns: minmax(16.4285714286vw, 1fr) minmax(auto, 61.4285714286vw);
  }
}
.colBox + .colBox {
  margin-top: 24.1730279898vw;
}
@media screen and (min-width: 768px) {
  .colBox + .colBox {
    margin-top: 6.25rem;
  }
}
@media screen and (min-width: 1400px) {
  .colBox + .colBox {
    margin-top: 7.1428571429vw;
  }
}

/*----------
  BRAND
----------*/
#brand article {
  position: relative;
  z-index: 100;
}

.brand {
  border-bottom: 1px solid #666;
}
.brand li {
  list-style: none;
  border-top: 1px solid #666;
}
.brand_inner {
  display: none;
}
.brand_detail {
  padding: 2.0356234097vw 0 2.5445292621vw;
}
@media screen and (min-width: 768px) {
  .brand_detail {
    padding: 1rem 0;
    height: calc(100vh - 5.75rem);
    display: flex;
    flex-direction: column;
  }
}
@media screen and (min-width: 1400px) {
  .brand_detail {
    padding: 1.1428571429vw 0;
    height: calc(100vh - 6.5714285714vw);
  }
}
.brand_name {
  display: flex;
  align-items: flex-start;
  padding: 5.0890585242vw 0;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .brand_name {
    padding: 1rem 0;
  }
}
@media screen and (min-width: 1400px) {
  .brand_name {
    padding: 1.1428571429vw 0;
  }
}
.brand_name span {
  font-size: 3.8167938931vw;
  font-family: "gt_b", sans-serif;
  width: 7.6335877863vw;
}
@media screen and (min-width: 768px) {
  .brand_name span {
    font-size: 1rem;
    width: 4.66rem;
  }
}
@media screen and (min-width: 1400px) {
  .brand_name span {
    font-size: 1.1428571429vw;
    width: 3.8571428571vw;
  }
}
.brand_name strong {
  font-size: 8.1424936387vw;
  font-family: "gt_b", sans-serif;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .brand_name strong {
    font-size: 3.25rem;
  }
}
@media screen and (min-width: 1400px) {
  .brand_name strong {
    font-size: 3.7142857143vw;
  }
}
.brand_name.active {
  opacity: 1 !important;
}
.brand_name.open {
  position: relative;
  background-color: #2F2F2F;
}
.brand_name.open:after {
  content: "";
  position: absolute;
  right: -3.8167938931vw;
  top: 50%;
  transform: translateY(-50%);
  width: 7.6335877863vw;
  height: 7.6335877863vw;
  background: url(../img/close.svg) no-repeat center/100% auto;
}
@media screen and (min-width: 768px) {
  .brand_name.open:after {
    width: 4rem;
    height: 4rem;
    right: -0.93rem;
  }
}
@media screen and (min-width: 1400px) {
  .brand_name.open:after {
    width: 4.6428571429vw;
    height: 4.6428571429vw;
    right: -1.0714285714vw;
  }
}
.brand_name.open + .brand_inner {
  background-color: #2F2F2F;
}
.brand_lead {
  font-size: 4.5801526718vw;
  margin-bottom: 3.8167938931vw;
}
@media screen and (min-width: 768px) {
  .brand_lead {
    font-size: 1.25rem;
    margin-bottom: 1.875rem;
  }
}
@media screen and (min-width: 1400px) {
  .brand_lead {
    font-size: 1.4285714286vw;
    margin-bottom: 2.1428571429vw;
  }
}

.swiper {
  margin-right: -7.6335877863vw;
}
@media screen and (min-width: 768px) {
  .swiper {
    margin-right: -2.1428571429vw;
  }
}
.swiper-slide {
  margin-right: 2.5445292621vw;
  width: 84.4783715013vw;
}
@media screen and (min-width: 768px) {
  .swiper-slide {
    width: auto;
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .swiper-slide {
    margin-right: 1.875rem;
  }
}
@media screen and (min-width: 1400px) {
  .swiper-slide {
    margin-right: 2.1428571429vw;
  }
}
.swiper-slide img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .swiper-slide img {
    width: auto;
    height: 100%;
  }
}

@-moz-document url-prefix() {
  .swiper-slide {
    aspect-ratio: 30/17;
  }
}
.swiper-button-next, .swiper-button-prev {
  margin-top: 0 !important;
  width: 50% !important;
  height: 100% !important;
  top: 0 !important;
}

.swiper-button-next {
  right: 0 !important;
  cursor: url(../img/arrow_next.svg), default;
}

.swiper-button-prev {
  left: 0 !important;
  cursor: url(../img/arrow_prev.svg), default;
}

.swiper-button-next::after, .swiper-button-prev::after {
  display: none;
}

.touch .swiper-button-next, .touch .swiper-button-prev {
  pointer-events: none;
}

/*----------
  ABOUT
----------*/
#about .colBox {
  border-top: 1px solid #666;
  padding-top: 8.9058524173vw;
}
@media screen and (min-width: 768px) {
  #about .colBox {
    padding-top: 2.8rem;
  }
}
@media screen and (min-width: 1400px) {
  #about .colBox {
    padding-top: 3.2142857143vw;
  }
}

.about_en {
  font-size: 7.1246819338vw;
  line-height: 1.36;
  margin-bottom: 15.2671755725vw;
}
@media screen and (min-width: 768px) {
  .about_en {
    font-size: 2.375rem;
    margin-bottom: 6.25rem;
  }
}
@media screen and (min-width: 1400px) {
  .about_en {
    font-size: 2.7142857143vw;
    margin-bottom: 7.1428571429vw;
  }
}
.about_jp {
  font-size: 3.8167938931vw;
  line-height: 2.1;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .about_jp {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1400px) {
  .about_jp {
    font-size: 1.1428571429vw;
  }
}

.info h4 {
  font-size: 5.0890585242vw;
  margin-bottom: 5.0890585242vw;
}
@media screen and (min-width: 768px) {
  .info h4 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 1400px) {
  .info h4 {
    font-size: 1.7142857143vw;
    margin-bottom: 2.2857142857vw;
  }
}
.info p {
  font-size: 3.8167938931vw;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .info p {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1400px) {
  .info p {
    font-size: 1.1428571429vw;
  }
}

/*----------
  NEWS
----------*/
.news_tab {
  display: flex;
  list-style: none;
  margin-left: -2.5445292621vw;
}
@media screen and (min-width: 768px) {
  .news_tab {
    margin-left: -0.625rem;
    display: block;
  }
}
@media screen and (min-width: 1400px) {
  .news_tab {
    margin-left: -0.7142857143vw;
    display: block;
  }
}
.news_tab li {
  font-size: 5.0890585242vw;
  font-family: "gt_b", sans-serif;
  cursor: pointer;
  padding: 2.5445292621vw;
}
@media screen and (min-width: 768px) {
  .news_tab li {
    font-size: 1.5rem;
    padding: 0.625rem;
  }
}
@media screen and (min-width: 1400px) {
  .news_tab li {
    font-size: 1.7142857143vw;
    padding: 0.7142857143vw;
  }
}
.news_tab li:not(.active) {
  color: #666;
}
.news_contents {
  list-style: none;
}
.news_contents li {
  border-bottom: 1px solid #666;
  margin-bottom: 12.7226463104vw;
  padding-bottom: 2.0356234097vw;
}
@media screen and (min-width: 768px) {
  .news_contents li {
    border-top: 1px solid #666;
    border-bottom: none;
    margin-bottom: 0;
    padding-top: 2.1rem;
    padding-bottom: 2.8rem;
    display: grid;
    grid-template-columns: 1fr minmax(8.75rem, 26.7%);
  }
}
@media screen and (min-width: 1400px) {
  .news_contents li {
    padding-top: 2.5vw;
    padding-bottom: 3.2142857143vw;
    grid-template-columns: 1fr minmax(10vw, 26.7%);
  }
}
.news_title {
  font-size: 4.5801526718vw;
  font-family: "gt_r", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  margin-bottom: 5.0890585242vw;
}
@media screen and (min-width: 768px) {
  .news_title {
    font-size: 1.5rem;
    margin-bottom: 0;
    margin-right: 3rem;
  }
}
@media screen and (min-width: 1400px) {
  .news_title {
    font-size: 1.4285714286vw;
    margin-right: 3.4285714286vw;
  }
}
.news_date {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .news_date {
    flex-direction: column;
    align-items: flex-start;
  }
}
.news_date time {
  margin-right: 4.5801526718vw;
  font-size: 3.5623409669vw;
}
@media screen and (min-width: 768px) {
  .news_date time {
    font-size: 1.25rem;
    margin-right: 0;
  }
}
@media screen and (min-width: 1400px) {
  .news_date time {
    font-size: 1.4285714286vw;
  }
}
.news_date span {
  font-size: 3.5623409669vw;
}
@media screen and (min-width: 768px) {
  .news_date span {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1400px) {
  .news_date span {
    font-size: 1vw;
  }
}

/*----------
  SHOP
----------*/
.shop_detail {
  list-style: none;
}
.shop_detail a {
  color: #fff;
}
.shop_detail li:not(:last-child) {
  margin-bottom: 10.1781170483vw;
}
@media screen and (min-width: 768px) {
  .shop_detail li:not(:last-child) {
    margin-bottom: 2.8rem;
  }
}
@media screen and (min-width: 1400px) {
  .shop_detail li:not(:last-child) {
    margin-bottom: 3.2142857143vw;
  }
}
.shop_detail h3 {
  font-size: 5.0890585242vw;
  margin-bottom: 2.5445292621vw;
  font-family: "gt_r", "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .shop_detail h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 1400px) {
  .shop_detail h3 {
    font-size: 1.7142857143vw;
    margin-bottom: 1.1428571429vw;
  }
}
.shop_detail p {
  font-size: 3.8167938931vw;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  margin-bottom: 2.5445292621vw;
}
@media screen and (min-width: 768px) {
  .shop_detail p {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 1400px) {
  .shop_detail p {
    font-size: 1.0714285714vw;
    margin-bottom: 1.1428571429vw;
  }
}
.shop_brand {
  display: flex;
  flex-wrap: wrap;
}
.shop_brand span {
  font-size: 4.3256997455vw;
}
@media screen and (min-width: 768px) {
  .shop_brand span {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1400px) {
  .shop_brand span {
    font-size: 1.4285714286vw;
  }
}
.shop_brand span:not(:last-child):after {
  content: "/";
  display: inline-block;
  padding: 0 1.272264631vw;
}
@media screen and (min-width: 768px) {
  .shop_brand span:not(:last-child):after {
    padding: 0 0.3rem;
  }
}
@media screen and (min-width: 1400px) {
  .shop_brand span:not(:last-child):after {
    padding: 0 0.3571428571vw;
  }
}

/*----------
  CONTACT
----------*/
@media screen and (min-width: 768px) {
  .formBox {
    max-width: 53.75rem;
    margin-left: auto;
  }
}
@media screen and (min-width: 1400px) {
  .formBox {
    max-width: 61.4285714286vw;
  }
}
.form_item {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .form_item {
    max-width: 732px;
    flex-direction: row;
    align-items: center;
  }
}
@media screen and (min-width: 1400px) {
  .form_item {
    max-width: 52.2857142857vw;
  }
}
.form_item label {
  font-size: 4.0712468193vw;
  line-height: 1;
  margin-bottom: 4.0712468193vw;
}
@media screen and (min-width: 768px) {
  .form_item label {
    font-size: 1.125rem;
    margin-bottom: 0;
    width: 13.75rem;
  }
}
@media screen and (min-width: 1400px) {
  .form_item label {
    font-size: 1.2857142857vw;
    width: 15.7142857143vw;
  }
}
@media screen and (min-width: 768px) {
  .form_item label + * {
    flex: 1;
  }
}
.form_item + .form_item {
  margin-top: 7.6335877863vw;
}
@media screen and (min-width: 768px) {
  .form_item + .form_item {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 1400px) {
  .form_item + .form_item {
    margin-top: 2.2857142857vw;
  }
}
.form_btn {
  margin-top: 14.2493638677vw;
}
@media screen and (min-width: 768px) {
  .form_btn {
    margin-top: 5.44rem;
  }
}
@media screen and (min-width: 1400px) {
  .form_btn {
    margin-top: 6.2142857143vw;
  }
}
.form_btn input {
  background-color: #000;
  text-align: center;
  width: 100%;
  font-family: "gt_b", sans-serif;
  font-size: 4.5801526718vw;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .form_btn input {
    width: 23rem;
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1400px) {
  .form_btn input {
    width: 26.2857142857vw;
    font-size: 1.2857142857vw;
  }
}
@media (hover) {
  .form_btn input:hover {
    background-color: #fff;
    color: #000;
  }
}

/*----------
  FOOTER
----------*/
.footer {
  padding: 6.8702290076vw 7.6335877863vw 10.6870229008vw;
  font-size: 5.0890585242vw;
  background-color: #2F2F2F;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 2.8rem 2.1428571429vw 3.45rem;
    font-size: 1.25rem;
    display: grid;
    grid-template-columns: 1fr 11.25rem;
  }
}
@media screen and (min-width: 1400px) {
  .footer {
    padding: 3.2142857143vw 2.1428571429vw 3.9285714286vw;
    font-size: 1.4285714286vw;
  }
}
.footer a {
  color: #fff;
  text-decoration: none;
}
@media (hover) {
  .footer a:hover {
    opacity: 0.7;
  }
}
.footer_insta {
  margin-bottom: 6.3613231552vw;
}
@media screen and (min-width: 768px) {
  .footer_insta {
    margin-bottom: 0;
    text-align: center;
    grid-column: 2/3;
  }
}
.footer_insta a {
  display: block;
  padding: 2.5445292621vw 0;
}
@media screen and (min-width: 768px) {
  .footer_insta a {
    padding: 1rem 0;
  }
}
@media screen and (min-width: 1400px) {
  .footer_insta a {
    padding: 1.1428571429vw 0;
  }
}
.footer_item {
  list-style: none;
}
@media screen and (min-width: 768px) {
  .footer_item {
    display: flex;
    justify-content: space-between;
    grid-column: 1/2;
    grid-row: 1;
  }
}
.footer_item a {
  display: block;
  margin-top: 2.0356234097vw;
  padding: 2.5445292621vw 0;
}
@media screen and (min-width: 768px) {
  .footer_item a {
    padding: 1rem 1.5rem 1rem 0;
    margin-top: 0;
  }
}
@media screen and (min-width: 1400px) {
  .footer_item a {
    padding: 1.1428571429vw 1.7142857143vw 1.1428571429vw 0;
  }
}
@media screen and (min-width: 768px) {
  .footer_item p {
    padding: 1rem 0;
  }
}
@media screen and (min-width: 1400px) {
  .footer_item p {
    padding: 1.1428571429vw 0;
  }
}/*# sourceMappingURL=style.css.map */