:root {
  --color-text: rgba(112, 113, 115, 1);
  --color-blue100: rgba(153, 170, 196, 1);
  --color-bg-btm: rgba(153, 170, 196, .05);
  --hover-color: #99AAC4;
}

:root {
  --fs-12-12: 3.2vw;
  --fs-12-14: 3.2vw;
  --fs-12-16: 3.2vw;
  --fs-14-14: 3.73vw;
  --fs-14-16: 3.73vw;
  --fs-16-16: 4.27vw;
  --fs-16-12: 4.27vw;
  --fs-20-24: 5.33vw;
  --fs-24-24: 6.4vw;
  --fs-24-16: 6.4vw;
}

@media all and (min-width: 864px) {
  :root {
    --fs-12-12: min(0.83vw, 12px);
    --fs-12-14: min(0.97vw, 14px);
    --fs-12-16: min(1.11vw, 16px);
    --fs-14-14: min(0.97vw, 14px);
    --fs-14-16: min(1.11vw, 16px);
    --fs-16-16: min(1.11vw, 16px);
    --fs-16-12: min(0.83vw, 12px);
    --fs-20-24: min(1.67vw, 24px);
    --fs-24-24: min(1.67vw, 24px);
    --fs-24-16: min(1.11vw, 16px);
  }
}
:root {
  --ttl-dot-width: 1.07vw;
  --cursor-width: 16px;
  --hover-opacity: .6;
}

@media all and (min-width: 864px) {
  :root {
    --ttl-dot-width: min(0.28vw, 4px);
  }
}
/***
    The new CSS reset - version 1.11.2 (last updated 15.11.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu, summary {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

html {
  font-size: 100%;
}

:root {
  --vh: 100vh;
}

body {
  font-family: "Shippori Mincho", serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  overscroll-behavior-y: none;
  touch-action: manipulation;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  color: var(--color-text);
  font-size: var(--fs-14-16);
}

::selection {
  background: var(--color-blue100);
  color: #fff;
}

a {
  color: var(--color-text);
  text-decoration: none;
  text-decoration-thickness: 1px;
}

li {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

.textbox {
  text-box: trim-both cap alphabetic;
}

.zenkaku {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.inst {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
}

img {
  width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
}

.c-icon {
  position: relative;
  display: block;
}
.c-icon svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

#wrapper {
  width: 100%;
  padding-bottom: 4.27vw;
}

footer#global_footer {
  padding-bottom: 4.27vw;
}
footer#global_footer .nav_footer {
  display: flex;
  width: 86%;
  margin-inline: auto;
  justify-content: space-between;
  align-items: center;
}
footer#global_footer .copy p {
  font-family: "tt-commons-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--fs-12-12);
  letter-spacing: 0.1em;
  line-height: 2;
}
footer#global_footer a {
  line-height: 2;
  color: rgb(112, 113, 115);
}
footer#global_footer a span {
  position: relative;
  line-height: 1;
  display: block;
}
footer#global_footer a span:after {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--color-text);
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0px;
}
footer#global_footer a.c-link_instagram {
  font-size: var(--fs-12-12);
  font-family: "tt-commons-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
}
footer#global_footer p.c-link_contact {
  font-size: var(--fs-12-12);
  font-family: poppins, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
}

@media all and (min-width: 864px) {
  #wrapper {
    width: 100%;
    padding-bottom: min(1.67vw, 24px);
  }
  footer#global_footer {
    padding-bottom: min(2.78vw, 40px);
  }
  footer#global_footer .nav_footer {
    width: 93.26%;
  }
}
@media (pointer: fine) and (hover: hover) {
  html, body {
    cursor: none;
  }
  .cursor {
    position: fixed;
    width: var(--cursor-width);
    height: var(--cursor-width);
    top: 0px;
    left: 0px;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 200; /* mix-blend-mode: difference;*/
  }
  .cursor span {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100vmax;
    display: block;
    background: #99aac4;
    top: 0px;
    left: 0px;
    transition: scale 0.3s ease;
  }
  *, *::before, *::after {
    cursor: none !important;
  }
  :has(a:hover) .cursor span {
    scale: 1.5;
  }
}
.c-ttl_section {
  position: relative;
}
.c-ttl_section h3 {
  width: fit-content;
  color: var(--color-blue100);
  font-size: var(--fs-24-24);
  letter-spacing: 0.1em;
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  position: relative;
}
.c-ttl_section h3:after {
  content: "";
  width: var(--ttl-dot-width);
  height: var(--ttl-dot-width);
  display: block;
  position: absolute;
  top: 0px;
  right: -0.5em;
  background: var(--color-blue100);
  border-radius: 100vmax;
}

.show_menu nav#global_nav {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.6s ease;
}

nav#global_nav {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
nav#global_nav p#logo {
  display: none;
}
nav#global_nav .nav_inner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  overflow-y: scroll;
}
nav#global_nav .nav_content {
  width: 84%;
  margin-inline: auto;
}
nav#global_nav ul {
  padding-top: 54.13vw;
}
nav#global_nav ul li {
  margin-bottom: 8.53vw;
}
nav#global_nav ul li a {
  font-size: var(--fs-24-16);
  line-height: 2;
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  color: var(--color-blue100);
}
nav#global_nav ul li a span {
  position: relative;
  width: fit-content;
  display: block;
}
nav#global_nav ul li a span:after {
  content: "";
  width: var(--ttl-dot-width);
  height: var(--ttl-dot-width);
  display: block;
  position: absolute;
  top: 0px;
  right: -0.5em;
  background: var(--color-blue100);
  border-radius: 100vmax;
}
nav#global_nav button {
  position: absolute;
  top: 13.33vw;
  left: 8vw;
}
nav#global_nav button span {
  font-size: var(--fs-16-16);
  font-family: poppins, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  color: var(--color-blue100);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
nav#global_nav .copy p {
  font-family: "tt-commons-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 2;
  font-size: var(--fs-12-12);
  letter-spacing: 0.1em;
}

@media all and (min-width: 864px) {
  .c-ttl_section h3:after {
    top: -0.25em;
  }
  .scrolled nav#global_nav {
    opacity: 1;
    transition: opacity 0.5s ease;
  }
  nav#global_nav {
    position: fixed;
    width: 100%;
    height: min(6.67vw, 96px);
    top: 0;
    left: 0;
    opacity: 0;
  }
  nav#global_nav p#logo {
    width: min(8.61vw, 124px);
    display: block;
    position: absolute;
    left: min(4.44vw, 64px);
    top: min(1.94vw, 28px);
    pointer-events: auto;
  }
  nav#global_nav p#logo a {
    display: block;
  }
  nav#global_nav .nav_inner {
    width: calc(100% - min(11.11vw, 160px));
    height: 100%;
    position: relative;
    top: 0px;
    left: min(5.56vw, 80px);
    overflow-y: visible;
  }
  nav#global_nav .nav_content {
    width: fit-content;
    margin-inline: 0;
    position: absolute;
    top: min(2.22vw, 32px);
    right: min(5.56vw, 80px);
    pointer-events: auto;
  }
  nav#global_nav ul {
    width: fit-content;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 0;
    column-gap: min(5.56vw, 80px);
  }
  nav#global_nav ul li {
    margin-bottom: 0;
  }
  nav#global_nav ul li a {
    display: block;
    white-space: nowrap;
  }
  nav#global_nav ul li a span {
    width: fit-content;
  }
  nav#global_nav ul li a span:after {
    display: none;
  }
  nav#global_nav button {
    display: none;
  }
  nav#global_nav .copy {
    display: none;
  }
}

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