@charset "UTF-8";
/*
Theme Name: mo2d
*/

:root {
  --aligndefault-width: 768px;

  --color-primary: #000;
  --color-secondary: #000;

  --font-size-base: 1rem;      /* 16.00px */
  --font-size-xxxxl: 3.052rem; /* 48.83px */
  --font-size-xxxl: 2.441rem;  /* 39.06px */
  --font-size-xxl: 1.953rem;   /* 31.25px */
  --font-size-xl: 1.563rem;    /* 25.00px */
  --font-size-l: 1.25rem;      /* 20.00px */
  --font-size-m: 1rem;         /* 16.00px */
  --font-size-s: 0.8rem;       /* 12.80px */
  --font-size-xs: 0.64rem;     /* 10.24px */
  --font-size-xxs: 0.512rem;   /* 8.19px */

  --font-primary: 'quincy-cf', 'yu-gothic-pr6n', sans-serif;
  --font-secondary: 'quincy-cf', 'yu-gothic-pr6n', sans-serif;
}

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

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 100%;
  vertical-align: baseline;
  outline: 0;
}

html {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  font-family: var(--font-secondary);
  -webkit-text-size-adjust: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  overflow-x: hidden;
  overflow-wrap: break-word;
  color: var(--color-primary);
  font-size: var(--font-size-base);
  font-feature-settings: "palt";
  line-height: 1;
}

body.active {
  overflow: hidden;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font-size: 100%;
  text-decoration: none;
  vertical-align: baseline;
}

ins {
  text-decoration: none;
}

mark {
  background-color: #ff0;
  color: #000;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  text-decoration: underline dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}

input, select {
  vertical-align: middle;
}

input, textarea {
  padding: 0;
  border: 0;
  border: 1px solid #ccc;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  outline: 0;
  -webkit-appearance: none;
}

textarea {
  resize: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.ofi-cover {
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

/*
.alignleft {
  float: left;
  margin-right: 1em;
}

.alignright {
  float: right;
  margin-left: 1em;
}

.aligncenter {
  margin-right: auto;
  margin-left: auto;
}

.wp-block-archives.aligncenter,
.wp-block-categories.aligncenter,
.wp-block-latest-comments.aligncenter,
.wp-block-latest-posts.aligncenter,
.wp-block-rss.aligncenter,
.wp-block-tag-cloud.aligncenter {
  text-align: center;
}
*/

/*
p {
  font-size: var(--font-size-m);
  line-height: 1.8;
}

h1 {
  font-size: var(--font-size-xl);
}

h2 {
  font-size: var(--font-size-l);
}

h3 {
  font-size: var(--font-size-m);
}

h4 {
  font-size: var(--font-size-m);
}

h5 {
  font-size: var(--font-size-m);
}

h6 {
  font-size: var(--font-size-m);
}
*/

/* screen-reader-text */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* lightbox */
/*
.lightbox .lb-image {
  border: 0;
  border-radius: 0;
}

.lb-outerContainer {
  border-radius: 0;
}

.lb-data .lb-number {
  color: #fff;
}
*/

/* container */
.container {
  width: 100%;
}

@media (max-width: 800px) {
  .container {
    padding: 0 16px;
  }
}

@media (min-width: 801px) {
  .container {
    max-width: var(--aligndefault-width);
    margin-right: auto;
    margin-left: auto;
  }
}

/* alignwide */
@media (min-width: 801px) {
  .alignwide {
    margin-right: calc((100% - 100vw) / 4);
    margin-left: calc((100% - 100vw) / 4);
  }
}
@media (min-width: 1281px) {
  .alignwide {
    margin-right: -128px;
    margin-left: -128px;
  }
}

/* alignfull */
.alignfull {
  margin-right: calc((100% - 100vw) / 2);
  margin-left: calc((100% - 100vw) / 2);
}

/* spfull */
@media (max-width: 800px) {
  .spfull {
    margin-right: calc((100% - 100vw) / 2);
    margin-left: calc((100% - 100vw) / 2);
  }
}

/* bgfull */
.bgfull {
  margin-right: calc((100% - 100vw) / 2);
  margin-left: calc((100% - 100vw) / 2);
  padding-right: calc((100vw - 100%) / 2);
  padding-left: calc((100vw - 100%) / 2);
}

@media (min-width: 801px) {
  .alignwide.bgfull {
    margin-right: calc((100% - 100vw) / 2);
    margin-left: calc((100% - 100vw) / 2);
    padding-right: calc((100vw - 100%) / 4);
    padding-left: calc((100vw - 100%) / 4);
  }
}

@media (min-width: 1281px) {
  .alignwide.bgfull {
    margin-right: calc((100% - 100vw) / 2);
    margin-left: calc((100% - 100vw) / 2);
    padding-right: calc((100vw - 100%) / 2 - 128px);
    padding-left: calc((100vw - 100%) / 2 - 128px);
  }
}

/* header */
header {
  z-index: 2;
  width: 100%;
  height: 48px;
  background-color: rgba(255,255,255,1);
}

header.fixed {
  position: fixed;
  top: 0;
  right: 0;
  background-color: rgba(255,255,255,.9);
}

header .alignwide {
  position: relative;
}

/* header-logo */
.header-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
}

.header-logo a {
  z-index: 1;
}

.header-logo img {
  width: auto;
  height: 16px;
}

/* sound-button */
#sound-button {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 18px;
  height: 48px;
  font-size: 16px;
  cursor: pointer;
}

.home #sound-button {
  display: flex;
  align-items: center;
}

#sound-button .fa-volume-off {
  color: #777;
}

#sound-button .fa-volume-up {
  color: #000;
}

/* menu-button */
#menu-button {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  height: 48px;
  cursor: pointer;
}

#menu-button svg {
  width: 48px;
  height: 16px;
}

@media (min-width: 801px) {
  #menu-button svg {
    width: 80px;
  }
}

.menu-button-svg-top,
.menu-button-svg-center,
.menu-button-svg-bottom {
  transition: transform .3s;
}

.menu-button-svg-center {
  display: none;
}

#menu-button.active .menu-button-svg-top {
  transform: translateY(5.7px);
}

#menu-button.active .menu-button-svg-bottom {
  transform: translateY(-5.7px);
}

/* header-nav */
#header-nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 96px;
  overflow: scroll;
  background-color: rgba(255,255,255,.8);
  transition: .3s opacity;
  pointer-events: none;
}

#header-nav.active {
  opacity: 1;
  pointer-events: initial;
}

#header-nav ul {
  text-align: center;
}

#header-nav li {
  opacity: 0;
  font-size: 25px;
  transform: translateY(.5em);
}

#header-nav.active li {
  opacity: 1;
  transform: translateY(0);
}

#header-nav.active li:nth-of-type(1) {
  transition: .3s .3s;
}

#header-nav.active li:nth-of-type(2) {
  transition: .3s .4s;
}

#header-nav.active li:nth-of-type(3) {
  transition: .3s .5s;
}

#header-nav li a {
  display: block;
  padding: .5em;
  color: #777;
}

@media (min-width: 801px) {
  #header-nav li {
    font-size: 39.06px;
  }
}

/* main */
main {
  min-height: 1px;
}

main.fixed {
  margin-top: 48px;
}

/*
.home main {
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}
*/

/* post-container */
/*
.post-container h1 {
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  font-size: 39.06px;
}

.post-container h2 {
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  font-size: 25px;
}

.post-container h3 {
  margin-block-start: 1em;
  margin-block-end: 1em;
  font-size: 16px;
}

.post-container p {
  margin-block-start: 1em;
  margin-block-end: 1em;
  font-size: 16px;
  line-height: 1.6;
}

.post-container dt,
.post-container dd,
.post-container li {
  margin-block-start: 1em;
  margin-block-end: 1em;
  font-size: 16px;
  line-height: 1.6;
}

.post-container section {
  margin-block-start: 4em;
  margin-block-end: 4em;
}
*/

/* paginate-links */
/*
.paginate-links {
  display: flex;
  justify-content: center;
  padding: 30px 0;
}

.paginate-links a, .paginate-links span {
  width: 30px;
  margin: 0 10px;
  color: #ccc;
  font-weight: bold;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
}

.paginate-links span.current {
  color: #000;
}
*/

/* footer */
#footer {
  z-index: 1;
  width: 100%;
  margin-top: auto;
  padding: 48px 0;
}

#footer.active {
  opacity: 0;
}

#header-secondary-menu {
  opacity: 0;
  transform: translateY(48px);
  width: 100%;
  padding-bottom: 48px;
}

#header-secondary-menu.active {
  opacity: 1;
  transform: translateY(0);
  transition: .3s .6s;
}

#header-secondary-menu li {
  font-size: 16px;
}

#footer .alignwide {
  display: flex;
  flex-direction: column;
}

/* secondary-menu */
.secondary-menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.secondary-menu li {
  font-size: 16px;
  text-align: center;
}

.secondary-menu a {
  display: block;
  padding: .5em;
  color: #777;
}

/* copyright, privacy-policy */
.copyright,
.privacy-policy {
  font-size: 12.80px;
  padding: .2em;
  text-align: center;
}

.privacy-policy a {
  color: #777;
}

/* home-video */
.home-video {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(var(--vh, 1vh) * 100 - 48px);
}

.home-video video {
  transform: rotate(90deg);
  max-width: calc(var(--vh, 1vh) * 100 - 48px);
  height: auto;
  padding-right: 48px;
}

@media (min-width: 801px) {
  .home-video {
    align-items: start;
  }

  .home-video video {
    transform: none;
    max-width: none;
    height: calc(var(--vh, 1vh) * 100 - 48px);
    padding-right: 0;
  }
}

/* home-text */
.home-text {
  padding: 144px 0 192px;
  border-bottom: .6px solid #000;
}

.home-text p {
  width: fit-content;
  margin: 0 auto;
  font-size: 25px;
}

.home-text p span {
  display: block;
  margin-top: 1em;
  color: #777;
  font-size: 16px;
  text-align: right;
}

@media (min-width: 801px) {
  .home-text {
    padding: 192px 0;
  }

  .home-text p  {
    font-size: 39.06px;
  }

  .home-text p span {
    font-size: 25px;
  }
}

/* wpcf7 */
.wpcf7-form p {
  font-weight: normal;
}

.wpcf7-form p:last-of-type {
  margin-block-end: 0;
}

.wpcf7-text,
.wpcf7-textarea {
  width: 100%;
  padding: .5em;
  font-weight: normal;
  font-size: var(--font-size-m);
}

.wpcf7-submit {
  width: 30%;
  height: 43.59px;
  border: 0;
  background-color: #000;
  color: #fff;
  font-size: var(--font-size-s);
  line-height: 43.59px;
}

.wpcf7-response-output {
  margin: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  color: #ccc;
  font-size: var(--font-size-xs);
  line-height: 1.6;
}

.wpcf7-not-valid-tip {
  color: #ccc !important;
  font-size: var(--font-size-xs);
}

.ajax-loader {
  display: none !important;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-form-control-wrap {
  font-weight: normal;
}

/* tab-menu */
.tab-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  padding: 48px 0;
}

.tab-menu li {
  font-size: 16px;
}

.tab-menu li a {
  display: block;
  padding: .5em 0;
  color: #777;
  transition: .3s;
}

.tab-menu li.active a {
  color: #000;
  border-bottom: .6px solid #000;
}

.tab-content {
  display: none;
  opacity: 0;
}

.tab-content.active {
  display: block;
  animation: fadeIn 1s forwards;
}

/* keyframes */
@keyframes fadeIn {
from {
  opacity: 0;
}
to {
  opacity: 1;
}
}

/* filter-menu */
.filter-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  padding: 48px 0;
}

.filter-menu li {
  padding: .5em 0;
  color: #777;
  font-size: 16px;
  cursor: pointer;
  transition: .3s;
}

.filter-menu li.active {
  color: #000;
  border-bottom: .6px solid #000;
}

/* about */
.about section + section {
  margin-top: 6em;
}

.about h2 {
  font-size: 25px;
}

.about p {
  font-size: 16px;
  line-height: 1.8;
}

.about a {
  color: #777;
}

.three-key-words-list,
.showrooms-list,
.company-list {
  line-height: 1.8;
}

.three-key-words-list,
.showrooms-list {
  display: flex;
  flex-direction: column;
}

.accordion-button {
  font-size: 25px;
  color: #777;
  cursor: pointer;
  transition: .3s;
}

.accordion-button::before {
  display: inline-block;
  width: 12.8px;
  height: 12.8px;
  margin-right: .2em;
  border: .6px solid #000;
  border-radius: 50%;
  content: "";
  transition: .3s;
}

.accordion-button.open {
  color: #000;
}

.accordion-button.open::before {
  background-color: #000;
}

.accordion-content {
  display: none;
  margin-left: 17.8px;
}

/* brands-list */
.brands-list {
  display: flex;
  flex-wrap: wrap;
}

.brands-list li {
  display: none;
  color: #777;
  font-size: 25px;
  line-height: 1.5;
  width: 100%;
}

@media (min-width: 801px) {
  .brands-list li {
    width: 50%;
  }
}

.brands-list li.active {
  display: block;
}

/* clients-list */
.clients-list {
  display: flex;
  flex-wrap: wrap;
}

.clients-list li {
  display: none;
  color: #777;
  font-size: 25px;
  line-height: 1.5;
  width: 100%;
}

@media (min-width: 801px) {
  .clients-list li {
    width: 50%;
  }
}

.clients-list li.active {
  display: block;
}

/* post_password */
.post_password-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.post_password {
  display: flex;
  border-bottom: .6px solid #000;
}

.post_password input {
  border: 0;
  font-size: 16px;
  line-height: 1.8;
}

.post_password input:nth-of-type(1) {
  width: calc(100% - 16px);
}

.post_password input:nth-of-type(1)::placeholder {
  color: #777;
}

.post_password input:nth-of-type(2) {
  width: 16px;
  color: #777;
  font-family: bootstrap-icons;
  cursor: pointer;
}

/* contact */
.contact-list {
  line-height: 1.8;
}

.contact-list a {
  color: #777;
}

.contact-list dd + dt {
  margin-top: 3em;
}

/* post-title */
.post-title {
  display: none;
}
