/* A (More) Modern CSS Reset - Andy Bell */
/* https://piccalil.li/blog/a-more-modern-css-reset/ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  color: #0e221c;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
}

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

body {
  min-height: 100vh;
  min-height: 100dvh;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

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

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

a {
  text-decoration: none;
  color: #0e221c;
}

li {
  list-style: none;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Rubik", "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background: white;
}

.cursor-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.cursor-slider .arrow-r,
.cursor-slider .arrow-l {
  position: absolute;
  width: 2.96vw;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 90;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .cursor-slider .arrow-r,
  .cursor-slider .arrow-l {
    display: none;
  }
}
.cursor-slider .arrow-r img,
.cursor-slider .arrow-l img {
  width: 0.49vw;
  aspect-ratio: 1/2;
}
.cursor-slider:hover {
  cursor: none;
}
.cursor-slider img {
  object-fit: cover;
}
@media (max-width: 767px) {
  .cursor-slider img {
    margin-bottom: 4vw;
  }
}
@media (min-width: 768px) {
  .cursor-slider:hover {
    cursor: default;
  }
  .cursor-slider .arrow-l,
  .cursor-slider .arrow-r {
    top: 50%;
    transform: translateY(-50%);
    pointer-events: auto;
    cursor: pointer;
    opacity: 1;
  }
  .cursor-slider .arrow-l {
    left: 1.5vw;
    right: auto;
  }
  .cursor-slider .arrow-r {
    right: 1.5vw;
    left: auto;
  }
  .cursor-slider .hover-slide-item img {
    cursor: pointer;
  }
}

.hover-slide-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hover-slide-item {
    overflow: visible;
  }
}
.hover-slide-item img {
  transition: opacity 0.3s;
}
@media (min-width: 768px) {
  .hover-slide-item:hover img {
    opacity: 0.8;
  }
}
.hover-slide-item .hover-slide-tag {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2.96vw;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.99vw;
  transform: translateY(100%);
  transition: transform 0.3s;
}
@media (max-width: 767px) {
  .hover-slide-item .hover-slide-tag {
    width: 100%;
    position: static;
    transform: none;
    font-size: 2.67vw;
    margin-bottom: 1vw;
  }
}
.hover-slide-item:hover .hover-slide-tag {
  transform: translateY(0);
}

.projects-item img {
  transition: opacity 0.3s;
}
@media (min-width: 768px) {
  .projects-item:hover img {
    opacity: 0.8;
  }
}

.news-media-item img {
  transition: opacity 0.3s;
}
@media (min-width: 768px) {
  .news-media-item:hover img {
    opacity: 0.8;
  }
}

.link-subtle {
  font-size: 0.93vw;
  color: #999;
  transition: color 0.3s;
}
.link-subtle:hover {
  color: #141414;
}
@media (max-width: 767px) {
  .link-subtle {
    font-size: 2.93vw;
    color: #1e1e1e;
  }
}

.page-title {
  font-size: 1.98vw;
  font-weight: normal;
  margin-bottom: 1vw;
}
@media (max-width: 767px) {
  .page-title {
    font-size: 6vw;
    font-weight: 400;
  }
}

@media (min-width: 768px) {
  main.projects .page-title,
  .news .page-title {
    font-size: 1.84vw;
  }
}

.section-title {
  font-size: 1.36vw;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: normal;
  margin-bottom: 2.72vw;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 3.73vw;
  }
}

@media (min-width: 768px) {
  .main .category .section-title,
  .products .products-category .section-title,
  .main .projects .section-title,
  .main .news-media .section-title {
    font-size: 1.22vw;
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.48vw;
  margin-bottom: 18.33vw;
}
@media (max-width: 767px) {
  .pagination {
    gap: 4.8vw;
    margin-bottom: 36.195vw;
  }
}
.pagination a {
  font-size: 0.93vw;
}
@media (max-width: 767px) {
  .pagination a {
    font-size: 2.93vw;
  }
}

.lead-text {
  width: 59.38vw;
  font-size: 1.36vw;
  line-height: 2;
}
@media (max-width: 767px) {
  .lead-text {
    width: 100%;
    padding: 0 6.67vw;
    font-size: 3.6vw;
  }
}

.btn-cta {
  width: 33.27vw;
  height: 5.8vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e1e1e1;
  font-size: 0.99vw;
}
@media (max-width: 767px) {
  .btn-cta {
    width: 79.07vw;
    height: 11.33vw;
    font-size: 2.93vw;
  }
}

.grid-item-tag {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 33.33vw;
  height: 2.96vw;
  background: rgba(255, 255, 255, 0.8);
  justify-content: space-between;
  align-items: center;
  font-size: 0.86vw;
  display: none;
  padding: 0 1.85vw;
}
@media (max-width: 767px) {
  .grid-item-tag {
    width: 100%;
    height: 16.27vw;
    position: static;
    display: flex;
    padding-top: 3.73vw;
    padding-bottom: 4.93vw;
    flex-direction: column;
  }
}
.grid-item-tag .title {
  font-weight: bold;
}
@media (max-width: 767px) {
  .grid-item-tag .title {
    font-size: 2.67vw;
    margin-bottom: 1.33vw;
  }
}
@media (max-width: 767px) {
  .grid-item-tag .date {
    font-size: 2.4vw;
  }
}

.form-field {
  display: flex;
  gap: 12.1vw;
  margin-bottom: 2.78vw;
}
@media (max-width: 767px) {
  .form-field {
    flex-direction: column;
    gap: 2.13vw;
    margin-bottom: 9.2vw;
  }
}
.form-field .key {
  width: 9.26vw;
  font-size: 1.23vw;
  display: flex;
  align-items: baseline;
  gap: 1.23vw;
}
@media (max-width: 767px) {
  .form-field .key {
    width: 100%;
    justify-content: space-between;
    font-size: 3.73vw;
  }
}
.form-field .key .required {
  font-size: 0.86vw;
}
@media (max-width: 767px) {
  .form-field .key .required {
    font-size: 3.33vw;
  }
}

.header {
  width: 100%;
  height: 15.86vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 100;
}
@media (min-width: 768px) {
  .header {
    height: calc(calc(4.01vw + 5.93vw * 0.625) + calc(1.485vw + 4.445vw * 0.625));
  }
  .header .header-logo {
    height: calc(4.01vw + 5.93vw * 0.625);
  }
  .header .header-nav {
    height: calc(1.485vw + 4.445vw * 0.625);
  }
}
@media (max-width: 767px) {
  .header {
    width: 100%;
    height: calc(21.47vw + env(safe-area-inset-top, 0px));
    padding-top: env(safe-area-inset-top, 0px);
    box-sizing: border-box;
  }
}
.header .header-logo {
  width: 100%;
  height: 9.94vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
}
@media (max-width: 767px) {
  .header .header-logo {
    height: 100%;
  }
}
.header .header-logo img {
  width: 19.01vw;
  aspect-ratio: 4.74/1;
}
@media (max-width: 767px) {
  .header .header-logo img {
    width: 41.07vw;
  }
}
.header .header-nav {
  width: 100%;
  height: 5.93vw;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4.63vw;
}
@media (max-width: 767px) {
  .header .header-nav {
    display: none;
  }
}
.header .header-nav a {
  font-size: 0.99vw;
  color: #999;
  transition: color 0.3s;
}
.header .header-nav a:hover {
  color: #444;
}
.header .header-nav a:active {
  color: #000;
}
.header .header-nav a.active {
  color: #000;
}
.header .header-sp-menu {
  display: none;
  cursor: pointer;
}
.header .header-sp-menu-content {
  display: none;
}
@media (max-width: 767px) {
  .header .header-sp-menu {
    display: block;
    position: absolute;
    right: 6.67vw;
    bottom: 7.33vw;
    color: #999;
    font-size: 2.67vw;
    z-index: 120;
  }
  .header .header-sp-menu-content {
    width: 100%;
    height: 100dvh;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 7.73vw;
    position: fixed;
    z-index: 110;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.3s, transform 0.3s;
  }
  .header .header-sp-menu-content.open {
    opacity: 1;
    transform: translateX(0);
  }
  .header .header-sp-menu-content a {
    font-size: 6.4vw;
    color: #999;
  }
  .header .header-sp-menu-content a.active {
    color: #000;
  }
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 6.05vw;
}
@media (max-width: 767px) {
  .footer {
    padding-bottom: 14.8vw;
  }
}
.footer .footer-link {
  display: flex;
  gap: 2.47vw;
  margin-bottom: 6.23vw;
}
@media (max-width: 767px) {
  .footer .footer-link {
    margin-bottom: 15.6vw;
  }
}
.footer .footer-link .footer-link-left,
.footer .footer-link .footer-link-right {
  border-bottom: 1px solid #000;
}
.footer .footer-link .footer-link-left a,
.footer .footer-link .footer-link-right a {
  width: 15.43vw;
  height: 2.9vw;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #000;
  font-size: 0.99vw;
  background: #fff;
  transition: background 0.3s;
}
@media (max-width: 767px) {
  .footer .footer-link .footer-link-left a,
  .footer .footer-link .footer-link-right a {
    width: 36.8vw;
    height: 8.67vw;
    font-size: 2.67vw;
  }
}
.footer .footer-link .footer-link-left a:hover,
.footer .footer-link .footer-link-right a:hover {
  background: #e1e1e1;
}
.footer .footer-link .footer-link-left a:active,
.footer .footer-link .footer-link-right a:active {
  background: #b3b3b3;
}
.footer .footer-link .footer-link-left a.active,
.footer .footer-link .footer-link-right a.active {
  background: #e1e1e1;
}
@media (min-width: 768px) {
  .footer .footer-link .footer-link-left a,
  .footer .footer-link .footer-link-right a {
    font-size: 0.85vw;
  }
}
.footer .copyright {
  font-size: 0.86vw;
  display: block;
  width: 100%;
  max-width: 100%;
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box;
  padding-inline: 4vw;
}
@media (max-width: 767px) {
  .footer .copyright {
    font-size: 2.4vw;
  }
}

.main .kv {
  margin-top: 8.02vw;
  width: 100%;
  padding-bottom: 6.91vw;
}
@media (min-width: 768px) {
  .main .kv {
    margin-top: calc(8.02vw - calc(15.86vw - calc(calc(4.01vw + 5.93vw * 0.625) + calc(1.485vw + 4.445vw * 0.625))));
  }
}
@media (max-width: 767px) {
  .main .kv {
    margin-top: calc(21.47vw + 15vw + env(safe-area-inset-top, 0px));
    padding-bottom: 11.33vw;
  }
}
.main .kv .kv-slider {
  width: 100%;
  overflow: hidden;
}
.main .kv .kv-slider .swiper-slide {
  display: block;
  height: 55.56vw;
  color: inherit;
  text-decoration: none;
}
@media (min-width: 768px) {
  .main .kv .kv-slider .swiper-slide {
    height: calc(100svh - calc(8.02vw - calc(15.86vw - calc(calc(4.01vw + 5.93vw * 0.625) + calc(1.485vw + 4.445vw * 0.625)))) - 100px);
    height: calc(100dvh - calc(8.02vw - calc(15.86vw - calc(calc(4.01vw + 5.93vw * 0.625) + calc(1.485vw + 4.445vw * 0.625)))) - 100px);
  }
}
@media (min-width: 768px) {
  body.admin-bar .main .kv .kv-slider .swiper-slide {
    height: calc(100svh - 32px - calc(8.02vw - calc(15.86vw - calc(calc(4.01vw + 5.93vw * 0.625) + calc(1.485vw + 4.445vw * 0.625)))) - 100px);
    height: calc(100dvh - 32px - calc(8.02vw - calc(15.86vw - calc(calc(4.01vw + 5.93vw * 0.625) + calc(1.485vw + 4.445vw * 0.625)))) - 100px);
  }
}
.main .kv .kv-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.main .kv .kv-slider-dot {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.1vw;
  margin-top: 3.09vw;
}
@media (max-width: 767px) {
  .main .kv .kv-slider-dot {
    gap: 4.1vw;
    margin-top: 6.67vw;
  }
}
.main .kv .kv-slider-dot .swiper-pagination-bullet {
  width: 0.62vw;
  height: 0.62vw;
  border-radius: 100%;
  background: #ccc;
  opacity: 1;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .main .kv .kv-slider-dot .swiper-pagination-bullet {
    width: 1.6vw;
    height: 1.6vw;
  }
}
.main .kv .kv-slider-dot .swiper-pagination-bullet-active {
  background: #000;
}
.main .category {
  padding-bottom: 5.68vw;
}
@media (max-width: 767px) {
  .main .category {
    padding-bottom: 5.27vw;
  }
}
@media (max-width: 767px) {
  .main .category .section-title {
    font-size: 3.2vw;
    margin-bottom: 7.07vw;
  }
}
.main .category .category-slider {
  margin-bottom: 5.4vw;
}
@media (max-width: 767px) {
  .main .category .category-slider .category-item {
    width: 66.67vw;
  }
}
.main .category .category-lead {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.main .category .category-lead h3 {
  font-size: 4.44vw;
  font-weight: normal;
  margin-bottom: 4.63vw;
}
@media (max-width: 767px) {
  .main .category .category-lead h3 {
    font-size: 10.4vw;
    margin-bottom: 12.4vw;
  }
}
.main .category .category-lead h3 {
  margin-top: 4vw;
}
.main .category .category-item {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}
.main .projects {
  padding-bottom: 21.705vw;
}
@media (max-width: 767px) {
  .main .projects .section-title {
    font-size: 3.73vw;
    margin-bottom: 6.93vw;
  }
}
.main .projects .projects-grid {
  margin-bottom: 13.33vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .main .projects .projects-grid {
    margin-bottom: 8.8vw;
    grid-template-columns: repeat(2, 1fr);
  }
}
.main .projects .projects-grid .projects-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media (max-width: 767px) {
  .main .projects .projects-grid .projects-item {
    aspect-ratio: auto;
    overflow: visible;
  }
}
.main .projects .projects-grid .projects-item .projects-tag {
  display: flex;
  transform: translateY(100%);
  transition: transform 0.3s;
}
@media (max-width: 767px) {
  .main .projects .projects-grid .projects-item .projects-tag {
    transform: none;
  }
}
.main .projects .projects-grid .projects-item:hover .projects-tag {
  transform: translateY(0);
}
.main .projects .projects-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.main .projects .projects-lead {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.main .projects .projects-lead h3 {
  font-size: 4.44vw;
  font-weight: normal;
  margin-bottom: 4.63vw;
}
@media (max-width: 767px) {
  .main .projects .projects-lead h3 {
    font-size: 10.4vw;
    text-align: center;
    margin-bottom: 8.53vw;
    line-height: 1.3;
  }
}
.main .projects .projects-lead .lead-text {
  margin-bottom: 3.58vw;
}
@media (min-width: 768px) {
  .main .projects .projects-lead .lead-text {
    font-size: 1.22vw;
  }
}
@media (max-width: 767px) {
  .main .projects .projects-lead .lead-text {
    margin-bottom: 9.47vw;
  }
}
@media (max-width: 767px) {
  .main .projects {
    padding-bottom: 33.705vw;
  }
  .main .projects .projects-grid .projects-item .projects-tag.grid-item-tag {
    width: 100%;
    height: 16.27vw;
    position: static;
    display: flex;
    padding-top: 3.73vw;
    padding-bottom: 4.93vw;
    padding-left: 0;
    padding-right: 0;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .main .projects .projects-grid .projects-item .projects-tag.grid-item-tag .title {
    font-weight: bold;
    font-size: 2.67vw;
    margin-bottom: 1.33vw;
  }
  .main .projects .projects-grid .projects-item .projects-tag.grid-item-tag .date {
    font-size: 2.4vw;
  }
}
.main .news-media {
  padding-bottom: 13.8vw;
}
@media (max-width: 767px) {
  .main .news-media .section-title {
    font-size: 3.73vw;
    margin-bottom: 6.4vw;
  }
}
.main .news-media .news-media-grid {
  margin-bottom: 3.21vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .main .news-media .news-media-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 6.87vw;
  }
}
.main .news-media .news-media-grid .news-media-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media (max-width: 767px) {
  .main .news-media .news-media-grid .news-media-item {
    aspect-ratio: auto;
    overflow: visible;
  }
}
.main .news-media .news-media-grid .news-media-item .news-media-tag {
  display: flex;
  transform: translateY(100%);
  transition: transform 0.3s;
}
@media (max-width: 767px) {
  .main .news-media .news-media-grid .news-media-item .news-media-tag {
    transform: none;
  }
}
.main .news-media .news-media-grid .news-media-item:hover .news-media-tag {
  transform: translateY(0);
}
.main .news-media .news-media-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.main .news-media .news-media-link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 767px) {
  .main .news-media .news-media-link {
    margin-bottom: 10vw;
  }
}

@media (max-width: 767px) {
  .main .category .category-slider .category-item,
  .main .category .category-slider .products-category-item,
  .products .products-category-slider .category-item,
  .products .products-category-slider .products-category-item {
    width: auto;
  }
  .main .category .category-slider .hover-slide-item,
  .products .products-category-slider .hover-slide-item {
    overflow: visible;
    aspect-ratio: auto;
  }
  .main .category .category-slider .hover-slide-item img,
  .products .products-category-slider .hover-slide-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    margin-bottom: 0;
  }
  .main .category .category-slider .hover-slide-item .hover-slide-tag,
  .products .products-category-slider .hover-slide-item .hover-slide-tag {
    position: static;
    background: #fff;
    transform: none;
    transition: none;
    margin-bottom: 1vw;
    height: auto;
    min-height: auto;
    padding: 1.5vw 0;
    font-size: 2.67vw;
  }
}
.about .about-kv {
  margin-top: 8.02vw;
  width: 100%;
  padding-bottom: 10.06vw;
}
@media (min-width: 768px) {
  .about .about-kv {
    margin-top: calc(8.02vw - calc(15.86vw - calc(calc(4.01vw + 5.93vw * 0.625) + calc(1.485vw + 4.445vw * 0.625))));
  }
}
@media (max-width: 767px) {
  .about .about-kv {
    margin-top: calc(21.47vw + 15vw + env(safe-area-inset-top, 0px));
    padding-bottom: 12.33vw;
  }
}
.about .about-kv .about-kv-slider {
  width: 100%;
}
.about .about-kv .about-kv-slider .about-kv-slider-img {
  height: 55.56vw;
  margin-bottom: 3.09vw;
}
@media (max-width: 767px) {
  .about .about-kv .about-kv-slider .about-kv-slider-img {
    margin-bottom: 6.67vw;
  }
}
.about .about-kv .about-kv-slider .about-kv-slider-img img {
  object-fit: cover;
}
.about .about-lead {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-bottom: 17.595vw;
}
@media (max-width: 767px) {
  .about .about-lead {
    padding-bottom: 37.5vw;
  }
}
.about .about-lead h2 {
  font-size: 1.98vw;
  margin-bottom: 5.31vw;
  font-weight: normal;
}
@media (max-width: 767px) {
  .about .about-lead h2 {
    font-size: 6vw;
    margin-bottom: 11.6vw;
  }
}
.about .about-lead .lead-text {
  margin-bottom: 11.67vw;
}
@media (min-width: 768px) {
  .about .about-lead .lead-text {
    font-size: 1.22vw;
  }
}
@media (max-width: 767px) {
  .about .about-lead .lead-text {
    font-size: 3.5vw;
    line-height: 2;
    margin-bottom: 19.2vw;
  }
}
.about .about-lead .about-lead-contact.btn-cta {
  transition: background 0.3s;
}
.about .about-lead .about-lead-contact.btn-cta:hover, .about .about-lead .about-lead-contact.btn-cta:active {
  background: #cbcbcb;
}

.products .products-kv {
  margin-top: 8.02vw;
  width: 100%;
  padding-bottom: 10.06vw;
}
@media (min-width: 768px) {
  .products .products-kv {
    margin-top: calc(8.02vw - calc(15.86vw - calc(calc(4.01vw + 5.93vw * 0.625) + calc(1.485vw + 4.445vw * 0.625))));
  }
}
@media (max-width: 767px) {
  .products .products-kv {
    margin-top: calc(21.47vw + 15vw + env(safe-area-inset-top, 0px));
    padding-bottom: 11.33vw;
  }
}
.products .products-kv .products-kv-slider {
  width: 100%;
}
.products .products-kv .products-kv-slider .products-kv-slider-img {
  height: 55.56vw;
  margin-bottom: 3.09vw;
}
@media (max-width: 767px) {
  .products .products-kv .products-kv-slider .products-kv-slider-img {
    height: 55.56vw;
    margin-bottom: 6.67vw;
  }
}
.products .products-kv .products-kv-slider .products-kv-slider-img img {
  object-fit: cover;
}
@media (max-width: 767px) {
  .products .products-kv .products-kv-slider .products-kv-slider-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.products .products-lead {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-bottom: 13.02vw;
}
@media (max-width: 767px) {
  .products .products-lead {
    padding-bottom: 8.4vw;
  }
}
.products .products-lead h2 {
  font-size: 2.2vw;
  margin-bottom: 5.31vw;
  font-weight: normal;
}
@media (max-width: 767px) {
  .products .products-lead h2 {
    font-size: 6vw;
    margin-bottom: 11.6vw;
  }
}
@media (min-width: 768px) {
  .products .products-lead .lead-text {
    font-size: 1.22vw;
  }
}
@media (max-width: 767px) {
  .products .products-lead .lead-text {
    font-size: 3.5vw;
    line-height: 2;
  }
}
.products .products-category {
  padding-bottom: 8.21vw;
}
@media (max-width: 767px) {
  .products .products-category {
    padding-bottom: 11.27vw;
  }
}
@media (max-width: 767px) {
  .products .products-category .section-title {
    font-size: 3.2vw;
    margin-bottom: 6.13vw;
  }
}
.products .products-category .products-category-slider {
  margin-bottom: 3.4vw;
}
@media (max-width: 767px) {
  .products .products-category .products-category-slider .products-category-item {
    width: 66.67vw;
  }
}
.products .products-category-item {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}
@media (max-width: 767px) {
  .products .products-collection .section-title {
    font-size: 3.2vw;
    margin-bottom: 6.13vw;
  }
}
.products .products-collection .js-products-collection-title,
.products .products-collection .products-collection-grid {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.products .products-collection.is-filter-animating .js-products-collection-title,
.products .products-collection.is-filter-animating .products-collection-grid {
  opacity: 0;
  transform: translateY(1.2vw);
}
@media (prefers-reduced-motion: reduce) {
  .products .products-collection .js-products-collection-title,
  .products .products-collection .products-collection-grid {
    transition: none;
  }
}
.products .products-collection .products-collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 11.115vw;
}
@media (max-width: 767px) {
  .products .products-collection .products-collection-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 24.405vw;
  }
}
.products .products-collection .products-collection-grid .products-collection-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}
@media (max-width: 767px) {
  .products .products-collection .products-collection-grid .products-collection-item {
    aspect-ratio: auto;
  }
}
.products .products-collection .products-collection-grid .products-collection-item .products-collection-item-tag {
  justify-content: space-between;
  padding: 0 1.85vw;
}
@media (max-width: 767px) {
  .products .products-collection .products-collection-grid .products-collection-item .products-collection-item-tag {
    height: 18vw;
    flex-direction: column;
    padding: 0 4vw;
    justify-content: center;
  }
}
.products .products-collection .products-collection-grid .products-collection-item .products-collection-item-tag .title {
  font-size: 0.99vw;
}
@media (max-width: 767px) {
  .products .products-collection .products-collection-grid .products-collection-item .products-collection-item-tag .title {
    font-size: 2.67vw;
  }
}
.products .products-collection .products-collection-grid .products-collection-item .products-collection-item-tag .designer {
  font-size: 0.86vw;
  color: #787878;
}
@media (max-width: 767px) {
  .products .products-collection .products-collection-grid .products-collection-item .products-collection-item-tag .designer {
    font-size: 2.67vw;
  }
}
.products .products-collection .products-collection-links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -3vw;
  margin-bottom: 11.115vw;
}
.products .products-collection .products-collection-links[hidden] {
  display: none;
}
@media (max-width: 767px) {
  .products .products-collection .products-collection-links {
    margin-top: -8vw;
    margin-bottom: 24.405vw;
  }
}

.contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.contact-modal.open {
  opacity: 1;
  visibility: visible;
}
.contact-modal .contact-modal-inner {
  padding: 8vw 12.53vw;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .contact-modal .contact-modal-inner {
    padding: 20vw 6.93vw;
  }
}
.contact-modal .contact-modal-close {
  position: absolute;
  top: 8vw;
  right: 12.53vw;
  background: none;
  border: none;
  font-size: 0.86vw;
  color: #999;
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1.98vw;
}
.contact-modal .contact-modal-close:hover {
  color: #141414;
}
@media (max-width: 767px) {
  .contact-modal .contact-modal-close {
    top: 20vw;
    right: 6.93vw;
    font-size: 2.67vw;
    line-height: 6vw;
  }
}
.contact-modal h2 {
  font-size: 1.98vw;
  font-weight: normal;
  margin-bottom: 5vw;
}
@media (max-width: 767px) {
  .contact-modal h2 {
    font-size: 6vw;
    margin-bottom: 13.87vw;
  }
}
.contact-modal .contact-form {
  width: 100%;
}
.contact-modal .contact-form .form-field .key {
  flex-shrink: 0;
  white-space: nowrap;
  width: auto;
  min-width: 9.26vw;
}
.contact-modal .contact-form .form-field .key .required {
  flex-shrink: 0;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .contact-modal .contact-form .form-field .key {
    font-size: 1.09vw;
  }
  .contact-modal .contact-form .form-field .key .required {
    font-size: 0.86vw;
  }
}
.contact-modal .contact-form .form-input {
  align-items: center;
}
.contact-modal .contact-form .form-input input {
  width: 53.95vw;
  height: 2.78vw;
  border: 1px solid #000;
  padding: 0 1.23vw;
  color: #0e221c;
  -webkit-text-fill-color: #0e221c;
}
@media (max-width: 767px) {
  .contact-modal .contact-form .form-input input {
    width: 100%;
    height: 9.33vw;
  }
}
.contact-modal .contact-form .form-select select {
  width: 27.41vw;
  height: 2.78vw;
  border: 1px solid #000;
  padding: 0 1.23vw;
  font-size: 1.23vw;
  appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpolygon points='0,0 10,0 5,6' fill='%23000'/%3E%3C/svg%3E") no-repeat right 1.23vw center;
  background-size: 0.74vw;
  color: #0e221c;
  -webkit-text-fill-color: #0e221c;
}
@media (min-width: 768px) {
  .contact-modal .contact-form .form-select select {
    font-size: 1.09vw;
  }
}
@media (max-width: 767px) {
  .contact-modal .contact-form .form-select select {
    width: 100%;
    height: 9.33vw;
    font-size: 3.73vw;
    background-position: right 3vw center;
    background-size: 2.4vw;
  }
}
.contact-modal .contact-form .form-select select option {
  color: #0e221c;
}
.contact-modal .contact-form .form-textarea {
  margin-bottom: 9.38vw;
}
@media (max-width: 767px) {
  .contact-modal .contact-form .form-textarea {
    margin-bottom: 12.4vw;
  }
}
.contact-modal .contact-form .form-textarea textarea {
  width: 53.95vw;
  height: 21.85vw;
  border: 1px solid #000;
  padding: 0 1.23vw;
  color: #0e221c;
  -webkit-text-fill-color: #0e221c;
}
@media (max-width: 767px) {
  .contact-modal .contact-form .form-textarea textarea {
    width: 100%;
    height: 71.73vw;
  }
}
.contact-modal .contact-form .form-submit {
  width: 33.33vw;
  height: 5.8vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e1e1e1;
  font-size: 0.99vw;
  border: none;
  cursor: pointer;
  margin: 0 auto;
  transition: background 0.3s;
}
.contact-modal .contact-form .form-submit:hover:not(:disabled), .contact-modal .contact-form .form-submit:active:not(:disabled) {
  background: #cbcbcb;
}
.contact-modal .contact-form .form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media (max-width: 767px) {
  .contact-modal .contact-form .form-submit {
    width: 79.07vw;
    height: 15vw;
    font-size: 2.93vw;
  }
}
.contact-modal .contact-form .taketori-contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-modal .contact-form .contact-notice {
  width: 100%;
  margin-bottom: 2vw;
  font-size: 0.99vw;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .contact-modal .contact-form .contact-notice {
    margin-bottom: 6vw;
    font-size: 2.93vw;
  }
}
.contact-modal .contact-form .contact-notice--success {
  color: #0e221c;
}
.contact-modal .contact-form .contact-notice--error {
  color: #b32d2e;
}

.store-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.store-modal.open {
  opacity: 1;
  visibility: visible;
}
.store-modal .store-modal-inner {
  padding: 18vw 12.53vw 4vw;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .store-modal .store-modal-inner {
    padding: 20vw 6.93vw 8vw;
  }
}
.store-modal .store-modal-close {
  position: absolute;
  top: 11.5vw;
  right: 13vw;
  background: none;
  border: none;
  font-size: 0.86vw;
  color: #999;
  cursor: pointer;
  transition: color 0.3s;
}
.store-modal .store-modal-close:hover {
  color: #141414;
}
@media (max-width: 767px) {
  .store-modal .store-modal-close {
    top: 5vw;
    right: 5vw;
    font-size: 2.67vw;
  }
}
.store-modal .store-modal-photos {
  width: 100%;
  margin-bottom: 7.56vw;
}
@media (max-width: 767px) {
  .store-modal .store-modal-photos {
    margin-bottom: 13.33vw;
  }
}
.store-modal .store-modal-photos img {
  display: block;
  width: 100%;
  height: auto;
}
.store-modal .store-modal-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.store-modal .store-modal-logo {
  width: 8.7vw;
  height: auto;
  margin-bottom: 6.5vw;
}
@media (max-width: 767px) {
  .store-modal .store-modal-logo {
    width: 12vw;
    margin-bottom: 6.67vw;
  }
}
.store-modal h2 {
  font-size: 1.98vw;
  font-weight: normal;
  margin-bottom: 0.62vw;
}
@media (max-width: 767px) {
  .store-modal h2 {
    font-size: 6vw;
    margin-bottom: 2vw;
  }
}
.store-modal .store-modal-status {
  font-size: 0.99vw;
}
@media (max-width: 767px) {
  .store-modal .store-modal-status {
    font-size: 2.93vw;
  }
}
.store-modal .store-modal-copyright {
  margin-top: auto;
  padding-top: 8vw;
  font-size: 0.86vw;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .store-modal .store-modal-copyright {
    padding-top: 16vw;
    font-size: 2.4vw;
  }
}

.company {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .company {
    padding-top: calc(20.81vw - calc(15.86vw - calc(calc(4.01vw + 5.93vw * 0.625) + calc(1.485vw + 4.445vw * 0.625))));
    padding-right: 12.53vw;
    padding-bottom: 0;
    padding-left: 12.53vw;
  }
}
@media (max-width: 767px) {
  .company {
    padding-top: calc(21.47vw + 15vw + env(safe-area-inset-top, 0px));
    padding-right: 6.93vw;
    padding-bottom: 0;
    padding-left: 6.93vw;
  }
}
.company .company-lead {
  width: 33.33vw;
  display: flex;
  justify-content: space-between;
  margin-top: 7.5vw;
  margin-bottom: 8.52vw;
}
@media (max-width: 767px) {
  .company .company-lead {
    width: 79.07vw;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 15vw;
    margin-bottom: 15.07vw;
  }
}
.company .company-lead .company-logo {
  width: 10.31vw;
  aspect-ratio: 3.71/1;
}
@media (max-width: 767px) {
  .company .company-lead .company-logo {
    width: 37.2vw;
    aspect-ratio: 3.72/1;
    margin-bottom: 9.73vw;
  }
}
.company .company-lead .company-logo img {
  width: 100%;
  object-fit: contain;
}
.company .company-lead .company-info {
  font-size: 1.11vw;
  line-height: 2;
}
@media (max-width: 767px) {
  .company .company-lead .company-info {
    font-size: 3.65vw;
  }
}
.company .company-link {
  width: 33.33vw;
  height: 5.8vw;
  margin-bottom: 10.86vw;
}
@media (max-width: 767px) {
  .company .company-link {
    width: 100%;
    height: 17.33vw;
    margin-bottom: 21.07vw;
  }
}
.company .company-link a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.99vw;
  background: #e1e1e1;
}
@media (max-width: 767px) {
  .company .company-link a {
    font-size: 2.93vw;
  }
}
.company .corporate-data {
  width: 59.38vw;
  margin-bottom: 18.33vw;
}
@media (max-width: 767px) {
  .company .corporate-data {
    width: 86vw;
    margin-bottom: 39.405vw;
  }
}
.company .corporate-data h3 {
  font-size: 1.98vw;
  font-weight: normal;
  text-align: center;
  margin-bottom: 10.49vw;
}
@media (max-width: 767px) {
  .company .corporate-data h3 {
    font-size: 6vw;
    margin-bottom: 17.73vw;
  }
}
.company .corporate-data .corporate-data-detail {
  border-top: 1px solid #000;
}
.company .corporate-data .corporate-data-detail .detail-info {
  padding: 2vw 0;
  border-bottom: 1px solid #000;
  display: flex;
  align-items: center;
  gap: 3.46vw;
  font-size: 0.97vw;
}
@media (max-width: 767px) {
  .company .corporate-data .corporate-data-detail .detail-info {
    font-size: 3.65vw;
    padding: 5vw 0;
  }
}
.company .corporate-data .corporate-data-detail .detail-info .key {
  width: 12vw;
  min-width: 12vw;
  flex-shrink: 0;
  line-height: 2.5;
}
@media (max-width: 767px) {
  .company .corporate-data .corporate-data-detail .detail-info .key {
    width: 28vw;
    min-width: 28vw;
    line-height: normal;
  }
}
.company .corporate-data .corporate-data-detail .detail-info .value {
  line-height: 2.5;
}
@media (max-width: 767px) {
  .company .corporate-data .corporate-data-detail .detail-info .value {
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .company .corporate-data .corporate-data-detail .detail-info.sp-column {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.67vw;
  }
  .company .corporate-data .corporate-data-detail .detail-info.sp-column .key {
    width: fit-content;
    min-width: auto;
  }
  .company .corporate-data .corporate-data-detail .detail-info.sp-column .value {
    line-height: 2;
  }
}

.projects {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .projects {
    padding-top: calc(12.81vw - calc(15.86vw - calc(calc(4.01vw + 5.93vw * 0.625) + calc(1.485vw + 4.445vw * 0.625))));
  }
  .projects .projects-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 767px) {
  .projects {
    padding-top: 13vw;
  }
}
.projects .projects-grid {
  margin-top: 7.5vw;
  margin-bottom: 17.775vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .projects .projects-grid {
    margin-top: 15vw;
    margin-bottom: 19.2vw;
    grid-template-columns: 1fr;
  }
}
.projects .projects-grid .projects-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media (max-width: 767px) {
  .projects .projects-grid .projects-item {
    aspect-ratio: auto;
    overflow: visible;
  }
}
.projects .projects-grid .projects-item .projects-tag {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 33.33vw;
  height: 2.96vw;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86vw;
  padding: 0 1.85vw;
  transform: translateY(100%);
  transition: transform 0.3s;
}
@media (max-width: 767px) {
  .projects .projects-grid .projects-item .projects-tag {
    width: 100%;
    height: 16.07vw;
    position: static;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 9vw 0 6vw;
    margin: 3vw 0 6vw;
    transform: none;
  }
  .projects .projects-grid .projects-item .projects-tag .title {
    font-size: 4.8vw;
    margin-bottom: 0;
  }
}
.projects .projects-grid .projects-item .projects-tag .title {
  font-weight: bold;
}
@media (max-width: 767px) {
  .projects .projects-grid .projects-item .projects-tag .date {
    font-size: 2.67vw;
  }
}
.projects .projects-grid .projects-item:hover .projects-tag {
  transform: translateY(0);
}
.projects .projects-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}

main.projects .projects-grid .projects-item .projects-tag .title {
  font-weight: 500;
}

@media (min-width: 768px) {
  .post-type-archive-project .projects {
    padding-top: calc(20.81vw - calc(15.86vw - calc(calc(4.01vw + 5.93vw * 0.625) + calc(1.485vw + 4.445vw * 0.625))));
  }
}
@media (max-width: 767px) {
  .post-type-archive-project .projects {
    padding-top: calc(21.47vw + 15vw + env(safe-area-inset-top, 0px));
  }
}
.post-type-archive-project .projects .projects-grid {
  margin-top: 7.5vw;
}
@media (max-width: 767px) {
  .post-type-archive-project .projects .projects-grid {
    margin-top: 15vw;
  }
}

.news {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .news {
    padding-top: calc(20.81vw - calc(15.86vw - calc(calc(4.01vw + 5.93vw * 0.625) + calc(1.485vw + 4.445vw * 0.625))));
    padding-right: 12.47vw;
    padding-bottom: 0;
    padding-left: 12.47vw;
  }
}
@media (max-width: 767px) {
  .news {
    padding: 32vw 12.4vw 0;
  }
}
.news .news-wrapper {
  width: 100%;
  margin-top: 7.5vw;
}
@media (max-width: 767px) {
  .news .news-wrapper {
    margin-top: 15vw;
  }
}
.news .news-wrapper .category {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-bottom: 3.95vw;
}
@media (max-width: 767px) {
  .news .news-wrapper .category {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 8vw;
  }
}
.news .news-wrapper .category a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: calc(1.98vw + 4px);
  font-size: 1.23vw;
  background: #efefef;
  cursor: pointer;
  transition: background 0.3s;
}
.news .news-wrapper .category a.active {
  background: #cbcbcb;
}
@media (max-width: 767px) {
  .news .news-wrapper .category a {
    font-size: 3.93vw;
    height: calc(5.67vw + 4px);
  }
}
.news .news-wrapper .news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  gap: 2.96vw;
  row-gap: 6vw;
  margin-bottom: 11.205vw;
}
@media (max-width: 767px) {
  .news .news-wrapper .news-grid {
    grid-template-columns: 1fr;
    gap: 12vw;
    margin-top: 15vw;
    margin-bottom: 39.705vw;
  }
}
.news .news-wrapper .news-grid .news-item {
  width: 100%;
  display: block;
  color: inherit;
  text-decoration: none;
}
.news .news-wrapper .news-grid .news-item > *:not(.link-subtle) {
  transition: opacity 0.3s;
}
.news .news-wrapper .news-grid .news-item .link-subtle {
  color: #999;
  transition: color 0.3s;
}
@media (min-width: 768px) {
  .news .news-wrapper .news-grid .news-item {
    cursor: pointer;
  }
  .news .news-wrapper .news-grid .news-item:hover > *:not(.link-subtle) {
    opacity: 0.8;
  }
  .news .news-wrapper .news-grid .news-item:hover .link-subtle {
    color: #141414;
  }
}
.news .news-wrapper .news-grid .news-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-bottom: 1.48vw;
}
@media (max-width: 767px) {
  .news .news-wrapper .news-grid .news-item img {
    margin-bottom: 3.5vw;
  }
}
.news .news-wrapper .news-grid .news-item .category-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2vw;
}
@media (max-width: 767px) {
  .news .news-wrapper .news-grid .news-item .category-date {
    margin-bottom: 4vw;
  }
}
.news .news-wrapper .news-grid .news-item .category-date .news-category {
  color: #fff;
  background: #000;
  width: 7.35vw;
  height: 1.48vw;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.99vw;
}
@media (max-width: 767px) {
  .news .news-wrapper .news-grid .news-item .category-date .news-category {
    font-size: 2.93vw;
    width: 18vw;
    height: 4vw;
  }
}
.news .news-wrapper .news-grid .news-item .category-date .news-category.cat-media {
  background: #000;
}
.news .news-wrapper .news-grid .news-item .category-date .news-category.cat-news {
  background: #cbcbcb;
  color: #000;
}
.news .news-wrapper .news-grid .news-item .category-date .news-category.cat-other {
  background: #efefef;
  color: #000;
}
.news .news-wrapper .news-grid .news-item .category-date .news-date {
  font-size: 0.93vw;
}
@media (max-width: 767px) {
  .news .news-wrapper .news-grid .news-item .category-date .news-date {
    font-size: 2.67vw;
  }
}
.news .news-wrapper .news-grid .news-item h3 {
  font-size: 1.36vw;
  margin-bottom: 1.3vw;
}
@media (min-width: 768px) {
  .news .news-wrapper .news-grid .news-item h3 {
    font-weight: 500;
  }
}
@media (max-width: 767px) {
  .news .news-wrapper .news-grid .news-item h3 {
    font-size: 5.6vw;
    margin-bottom: 3.5vw;
  }
}
.news .news-wrapper .news-grid .news-item p {
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
  margin-bottom: 0;
  font-size: 1.11vw;
  line-height: 1.5;
}
.news .news-wrapper .news-grid .news-item p::after {
  content: "......";
  display: block;
  margin-top: 1.2vw;
  margin-bottom: 2vw;
  font-size: 1.11vw;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media (max-width: 767px) {
  .news .news-wrapper .news-grid .news-item p {
    font-size: 3.6vw;
  }
  .news .news-wrapper .news-grid .news-item p::after {
    margin-top: 2.5vw;
    margin-bottom: 5vw;
    font-size: 3.6vw;
  }
}
@media (max-width: 767px) {
  .news .news-wrapper .news-grid .news-item .link-subtle {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }
}

.designers {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .designers {
    padding-top: calc(20.81vw - calc(15.86vw - calc(calc(4.01vw + 5.93vw * 0.625) + calc(1.485vw + 4.445vw * 0.625))));
    padding-right: 12.47vw;
    padding-bottom: 0;
    padding-left: 12.47vw;
  }
}
@media (max-width: 767px) {
  .designers {
    padding: calc(21.47vw + 15vw + env(safe-area-inset-top, 0px)) 12.4vw 0;
  }
}
.designers .designers-wrapper {
  width: 100%;
  margin-top: 7.5vw;
}
@media (max-width: 767px) {
  .designers .designers-wrapper {
    margin-top: 15vw;
  }
}
.designers .designers-wrapper .designers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.65vw;
  margin-bottom: 11.205vw;
}
@media (max-width: 767px) {
  .designers .designers-wrapper .designers-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 18vw;
  }
}
.designers .designers-wrapper .designers-grid .designers-item {
  width: 100%;
  display: block;
  color: inherit;
  text-decoration: none;
}
.designers .designers-wrapper .designers-grid .designers-item > *:not(.link-subtle) {
  transition: opacity 0.3s;
}
.designers .designers-wrapper .designers-grid .designers-item .link-subtle {
  color: #999;
  transition: color 0.3s;
}
@media (min-width: 768px) {
  .designers .designers-wrapper .designers-grid .designers-item {
    cursor: pointer;
  }
  .designers .designers-wrapper .designers-grid .designers-item:hover > *:not(.link-subtle) {
    opacity: 0.8;
  }
  .designers .designers-wrapper .designers-grid .designers-item:hover .link-subtle {
    color: #141414;
  }
}
@media (max-width: 767px) {
  .designers .designers-wrapper .designers-grid .designers-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 12vw;
  }
}
.designers .designers-wrapper .designers-grid .designers-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-bottom: 1.91vw;
}
@media (max-width: 767px) {
  .designers .designers-wrapper .designers-grid .designers-item img {
    margin-bottom: 7.5vw;
  }
}
.designers .designers-wrapper .designers-grid .designers-item h3 {
  font-size: 1.2vw;
  margin-bottom: 0.8vw;
}
@media (max-width: 767px) {
  .designers .designers-wrapper .designers-grid .designers-item h3 {
    font-size: 5.6vw;
    margin-bottom: 4vw;
  }
}
.designers .designers-wrapper .designers-grid .designers-item h4 {
  font-size: 1vw;
  font-weight: normal;
  margin-bottom: 1.73vw;
}
@media (max-width: 767px) {
  .designers .designers-wrapper .designers-grid .designers-item h4 {
    font-size: 3.73vw;
    margin-bottom: 4vw;
  }
}
@media (max-width: 767px) {
  .designers .designers-wrapper .designers-grid .designers-item .link-subtle {
    font-size: 3.73vw;
  }
}

.privacy {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .privacy {
    padding-top: calc(20.81vw - calc(15.86vw - calc(calc(4.01vw + 5.93vw * 0.625) + calc(1.485vw + 4.445vw * 0.625))));
    padding-right: 20.31vw;
    padding-bottom: 0;
    padding-left: 20.31vw;
  }
}
@media (max-width: 767px) {
  .privacy {
    padding: calc(21.47vw + 15vw + env(safe-area-inset-top, 0px)) 6.93vw 0;
  }
}
.privacy .privacy-wrapper {
  width: 100%;
  margin-top: 7.5vw;
  margin-bottom: 9.255vw;
}
@media (max-width: 767px) {
  .privacy .privacy-wrapper {
    margin-top: 15vw;
  }
}
.privacy .privacy-wrapper h3,
.privacy .privacy-wrapper p {
  font-size: 1vw;
  font-weight: normal;
  line-height: 2;
}
@media (max-width: 767px) {
  .privacy .privacy-wrapper h3,
  .privacy .privacy-wrapper p {
    font-size: 2.93vw;
  }
}
.privacy .privacy-wrapper h3 {
  margin-bottom: 2.47vw;
}
@media (max-width: 767px) {
  .privacy .privacy-wrapper h3 {
    margin-bottom: 5.47vw;
  }
}
.privacy .privacy-wrapper p {
  margin-bottom: 3.7vw;
}
@media (max-width: 767px) {
  .privacy .privacy-wrapper p {
    margin-bottom: 12.7vw;
  }
}

.terms {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .terms {
    padding-top: calc(20.81vw - calc(15.86vw - calc(calc(4.01vw + 5.93vw * 0.625) + calc(1.485vw + 4.445vw * 0.625))));
    padding-right: 20.31vw;
    padding-bottom: 0;
    padding-left: 20.31vw;
  }
}
@media (max-width: 767px) {
  .terms {
    padding: calc(21.47vw + 15vw + env(safe-area-inset-top, 0px)) 6.93vw 0;
  }
}
.terms .terms-wrapper {
  width: 100%;
  margin-top: 7.5vw;
  margin-bottom: 9.255vw;
}
@media (max-width: 767px) {
  .terms .terms-wrapper {
    margin-top: 15vw;
  }
}
.terms .terms-wrapper h3,
.terms .terms-wrapper p {
  font-size: 1vw;
  font-weight: normal;
  line-height: 2;
}
@media (max-width: 767px) {
  .terms .terms-wrapper h3,
  .terms .terms-wrapper p {
    font-size: 2.93vw;
  }
}
.terms .terms-wrapper h3 {
  margin-bottom: 2.47vw;
}
@media (max-width: 767px) {
  .terms .terms-wrapper h3 {
    margin-bottom: 5.47vw;
  }
}
.terms .terms-wrapper p {
  margin-bottom: 3.7vw;
}
@media (max-width: 767px) {
  .terms .terms-wrapper p {
    margin-bottom: 12.7vw;
    line-height: 2;
  }
}

.single-page {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .single-page {
    padding-top: calc(20.81vw - calc(15.86vw - calc(calc(4.01vw + 5.93vw * 0.625) + calc(1.485vw + 4.445vw * 0.625))));
    padding-right: 24.68vw;
    padding-bottom: 0;
    padding-left: 24.68vw;
  }
}
@media (max-width: 767px) {
  .single-page {
    padding: calc(21.47vw + 15vw + env(safe-area-inset-top, 0px)) 12.4vw 0;
  }
}
.single-page.designer-single .page-title, .single-page.project-single .page-title, .single-page.news-single .page-title, .single-page.product-single .page-title {
  font-size: 2.3vw;
  font-weight: normal;
}
@media (max-width: 767px) {
  .single-page.designer-single .page-title, .single-page.project-single .page-title, .single-page.news-single .page-title, .single-page.product-single .page-title {
    font-size: 6vw;
    font-weight: 500;
  }
}
.single-page.designer-single .page-title {
  margin-bottom: 0.8vw;
}
.single-page .product-single-gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 2.5vw;
}
@media (max-width: 767px) {
  .single-page .product-single-gallery {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 5vw;
  }
}
.single-page .product-single-gallery .product-single-gallery-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.single-page .product-single-body {
  width: 100%;
  font-size: 20px;
  line-height: 2;
  margin-bottom: 1.5vw;
}
@media (max-width: 767px) {
  .single-page .product-single-body {
    font-size: 20px;
    line-height: 2;
    margin-bottom: 3.5vw;
  }
}
.single-page .product-single-data {
  width: 100%;
  margin-bottom: 5vw;
}
@media (max-width: 767px) {
  .single-page .product-single-data {
    margin-bottom: 10vw;
  }
}
.single-page .product-single-data .product-single-data-row {
  display: flex;
  align-items: baseline;
  padding: 0.6vw 0;
  font-size: 0.93vw;
}
@media (max-width: 767px) {
  .single-page .product-single-data .product-single-data-row {
    flex-direction: column;
    font-size: 2.93vw;
    padding: 2vw 0;
    gap: 1vw;
  }
}
.single-page .product-single-data .product-single-data-row:nth-child(2) {
  padding-top: 1.2vw;
  padding-bottom: 0.6vw;
}
@media (max-width: 767px) {
  .single-page .product-single-data .product-single-data-row:nth-child(2) {
    padding-top: 2vw;
    padding-bottom: 2vw;
  }
}
.single-page .product-single-data .product-single-data-row:nth-child(3) {
  padding-top: 1.2vw;
  padding-bottom: 0.3vw;
}
@media (max-width: 767px) {
  .single-page .product-single-data .product-single-data-row:nth-child(3) {
    padding-top: 2vw;
    padding-bottom: 2vw;
  }
}
.single-page .product-single-data .product-single-data-row:nth-child(n+4) {
  padding: 0.3vw 0;
}
@media (max-width: 767px) {
  .single-page .product-single-data .product-single-data-row:nth-child(n+4) {
    padding: 2vw 0;
  }
}
.single-page .product-single-data .product-single-data-row .data-key {
  width: 10vw;
  min-width: 10vw;
  color: #787878;
}
@media (max-width: 767px) {
  .single-page .product-single-data .product-single-data-row .data-key {
    width: auto;
    min-width: auto;
  }
}
.single-page .product-single-data .product-single-data-row .data-value {
  flex: 1;
  margin-left: -5vw;
}
@media (max-width: 767px) {
  .single-page .product-single-data .product-single-data-row .data-value {
    margin-left: 0;
  }
}
.single-page .product-single-data .product-single-data-row .data-value .designer-name {
  margin-right: 0.5em;
}
.single-page .product-single-data .product-single-data-row .data-value .designer-name-en {
  color: #787878;
}
.single-page .product-single-data .product-single-data-row .data-value .designer-profile-link {
  color: #999;
  transition: color 0.3s;
}
.single-page .product-single-data .product-single-data-row .data-value .designer-profile-link:hover {
  color: #141414;
}
.single-page .product-single-content .btn-cta {
  margin: 0 auto;
}
.single-page .designer-single-name-en {
  font-size: 1.3vw;
  font-weight: normal;
  color: #787878;
  margin-bottom: 5vw;
}
@media (max-width: 767px) {
  .single-page .designer-single-name-en {
    font-size: 4.5vw;
    margin-bottom: 7vw;
  }
}
.single-page .designer-single-hero {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2vw;
  align-items: start;
}
@media (max-width: 767px) {
  .single-page .designer-single-hero {
    grid-template-columns: 1fr;
  }
}
.single-page .designer-single-hero .designer-single-img {
  margin-bottom: 0;
  width: 100%;
}
.single-page .designer-single-hero .designer-single-profile {
  font-size: 1vw;
  line-height: 1.85;
  padding-top: 0;
}
@media (max-width: 767px) {
  .single-page .designer-single-hero .designer-single-profile {
    font-size: 3.2vw;
    margin-top: 2vw;
  }
}
.single-page .project-single-img,
.single-page .news-single-img,
.single-page .designer-single-img,
.single-page .product-single-img {
  width: 100%;
  margin-bottom: 1vw;
}
@media (max-width: 767px) {
  .single-page .project-single-img,
  .single-page .news-single-img,
  .single-page .designer-single-img,
  .single-page .product-single-img {
    margin-bottom: 2.5vw;
  }
}
.single-page .project-single-img img,
.single-page .news-single-img img,
.single-page .designer-single-img img,
.single-page .product-single-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.single-page .category-date {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 2.5vw;
  gap: 1.5vw;
}
@media (max-width: 767px) {
  .single-page .category-date {
    margin-bottom: 5vw;
    gap: 3vw;
    justify-content: space-between;
  }
}
.single-page .category-date .news-category {
  color: #fff;
  background: #000;
  width: 7.35vw;
  height: 1.48vw;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.99vw;
}
@media (max-width: 767px) {
  .single-page .category-date .news-category {
    font-size: 2.93vw;
    width: 18vw;
    height: 4vw;
  }
}
.single-page .category-date .news-category.cat-media {
  background: #000;
}
.single-page .category-date .news-category.cat-news {
  background: #cbcbcb;
  color: #000;
}
.single-page .category-date .news-category.cat-other {
  background: #efefef;
  color: #000;
}
.single-page .category-date .news-date {
  font-size: 0.93vw;
}
@media (max-width: 767px) {
  .single-page .category-date .news-date {
    font-size: 2.67vw;
  }
}
.single-page .project-single-body,
.single-page .news-single-body,
.single-page .designer-single-body {
  width: 100%;
  font-size: 20px;
  line-height: 2;
}
@media (max-width: 767px) {
  .single-page .project-single-body,
  .single-page .news-single-body,
  .single-page .designer-single-body {
    font-size: 3.6vw;
  }
}
.single-page .project-single-body .wp-block-paragraph,
.single-page .news-single-body .wp-block-paragraph,
.single-page .designer-single-body .wp-block-paragraph {
  margin-top: 4vw;
  font-size: 1.24vw;
  line-height: 1.9;
}
@media (max-width: 767px) {
  .single-page .project-single-body .wp-block-paragraph,
  .single-page .news-single-body .wp-block-paragraph,
  .single-page .designer-single-body .wp-block-paragraph {
    margin-top: 12vw;
    font-size: 3.65vw;
  }
}
.single-page .product-single-body .wp-block-paragraph {
  margin-top: 4vw;
  font-size: 1.24vw;
  line-height: 1.9;
}
@media (max-width: 767px) {
  .single-page .product-single-body .wp-block-paragraph {
    margin-top: 12vw;
    font-size: 3.65vw;
  }
}
.single-page.designer-single .single-nav {
  margin-bottom: 3vw;
}
@media (max-width: 767px) {
  .single-page.designer-single .single-nav {
    margin-bottom: 8vw;
  }
}
.single-page .designer-single-collection {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 4vw;
  margin-bottom: 18vw;
}
@media (max-width: 767px) {
  .single-page .designer-single-collection {
    margin-top: 15vw;
  }
}
.single-page .designer-single-collection .section-title {
  margin-bottom: 2.72vw;
}
@media (max-width: 767px) {
  .single-page .designer-single-collection .section-title {
    margin-bottom: 6.72vw;
  }
}
.single-page .designer-single-collection .products-collection-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 767px) {
  .single-page .designer-single-collection .products-collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.single-page .designer-single-collection .products-collection-grid .products-collection-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}
@media (max-width: 767px) {
  .single-page .designer-single-collection .products-collection-grid .products-collection-item {
    aspect-ratio: auto;
  }
}
.single-page .designer-single-collection .products-collection-grid .products-collection-item .products-collection-item-tag {
  justify-content: space-between;
  padding: 0 1.85vw;
}
@media (max-width: 767px) {
  .single-page .designer-single-collection .products-collection-grid .products-collection-item .products-collection-item-tag {
    height: 18vw;
    flex-direction: column;
    justify-content: center;
  }
}
.single-page .designer-single-collection .products-collection-grid .products-collection-item .products-collection-item-tag .title {
  font-size: 0.99vw;
}
@media (max-width: 767px) {
  .single-page .designer-single-collection .products-collection-grid .products-collection-item .products-collection-item-tag .title {
    font-size: 2.67vw;
  }
}
.single-page .designer-single-collection .products-collection-grid .products-collection-item .products-collection-item-tag .designer {
  font-size: 0.86vw;
  color: #787878;
}
@media (max-width: 767px) {
  .single-page .designer-single-collection .products-collection-grid .products-collection-item .products-collection-item-tag .designer {
    font-size: 2.67vw;
  }
}
.single-page .designer-single-collection .designer-single-collection-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  margin-top: 7vw;
}
.single-page .single-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4vw;
  margin-top: 8vw;
  margin-bottom: 18vw;
}
@media (max-width: 767px) {
  .single-page .single-nav {
    gap: 8vw;
    margin-top: 16vw;
    margin-bottom: 36vw;
  }
}
.single-page .single-nav .single-nav-link {
  font-size: 0.93vw;
  color: #999;
  transition: color 0.3s;
}
.single-page .single-nav .single-nav-link:hover {
  color: #141414;
}
.single-page .single-nav .single-nav-link.disabled {
  color: #ccc;
  pointer-events: none;
}
@media (max-width: 767px) {
  .single-page .single-nav .single-nav-link {
    font-size: 2.93vw;
  }
}

.single-page.project-single .project-single-content,
.single-page.news-single .news-single-content {
  margin-top: 7.5vw;
  width: 100%;
}
@media (max-width: 767px) {
  .single-page.project-single .project-single-content,
  .single-page.news-single .news-single-content {
    margin-top: 15vw;
  }
}

@media (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}

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