:root {
  --color-text: rgba(91, 94, 96, 1);
  --color-blue100: rgba(153, 170, 196, 1);
  --color-bg-btm: rgba(153, 170, 196, .05);
}

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

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

@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);
}

a {
  color: #000;
  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;
}

img {
  width: 100%;
  height: auto;
}

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

.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;
  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;
}

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