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

body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

ul, ol {
  list-style: none;
  padding: 0;
}

img, svg, video, canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
}

input, button, textarea, select {
  font: inherit;
  border: none;
  background: none;
  color: inherit;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

[hidden] {
  display: none !important;
}

:root {
  --base-size: 100px;
  --min-size: 40px;
  --gold: #c19b5b;
  --lightgold: #d3b78e;
  --whitegold: #f8f3eb;
  --white: #fff;
  --black: #000;
  --container_size_small: 10.3rem;
  --container_size_big: 12rem;
  --container_size_head: 12.1rem;
  --stacksize_txt: .16rem;
  --stacksize_M: 2rem;
  --bg-gradient-fade-edges: linear-gradient(0deg, var(--white), transparent 10% 85%, var(--white));
  --bg-gradient-fade-top-bottom: linear-gradient(180deg, var(--white), transparent 15% 90%, var(--white));
  --font-basic: 'NotoSansCJKjp', 'Noto Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-button: 'azo-sans-web', sans-serif;
  --font-heading: 'azo-sans-web', sans-serif;
  --font-libre-bodoni: 'Libre Bodoni', serif;
}

html, body {
  font-family: var(--font-basic);
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html {
    font-size: clamp(60px, 7.8125vw, var(--base-size));
  }
}
@media (max-width: 767px) {
  html {
    font-size: clamp(var(--min-size), 13.0208vw, var(--base-size));
  }
}
body {
  font-size: var(--fx-font-base);
  font-family: var(--font-basic);
}

p {
  line-height: 1.7;
}

@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border-width: 0 !important;
}

.container_head {
  width: var(--container_size_head);
  max-width: calc(100% - 0.3rem);
  margin: 0 auto;
}

.container_big {
  width: var(--container_size_big);
  max-width: calc(100% - 0.3rem);
  margin: 0 auto;
}

.container_small {
  width: var(--container_size_small);
  max-width: calc(100% - 0.3rem);
  margin: 0 auto;
}

a {
  color: var(--color02);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

.stack_txt > * + * {
  margin-top: var(--stacksize_txt);
}

.stack_M > * + * {
  margin-top: var(--stacksize_M);
}

h1 {
  font-size: var(--fx-type-heading-lg);
}

h2 {
  font-size: var(--fx-type-heading-md);
}

p {
  font-size: var(--fx-type-body);
}

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

.full-width-image {
  width: 100vw;
  height: 50vh;
  object-fit: cover;
}

.thumbnail {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.flex {
  display: flex;
}

.flex_center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex_between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flexbox:after {
  content: "";
  display: block;
  width: calc((100% - 1rem) / 3);
  height: 0;
}

.flex_column {
  display: flex;
  flex-direction: column;
}

.flex_column_center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flex_column_center > * {
  max-width: 100%;
}

@media (max-width: 767px) {
  .flex_responsive {
    flex-direction: column;
  }
}
:root {
  --focus-magenta: #c0399f;
  --focus-purple: var(--fx-purple);
  --focus-purple-deep: var(--fx-purple);
  --focus-pink: #f7e3f1;
  --focus-pink-soft: #fbeef7;
  --focus-green: #34b34a;
  --gold: var(--focus-magenta);
  --lightgold: #d98cc4;
  --whitegold: var(--focus-pink-soft);
}

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