/*--------------------------------
  Default Style	
  --------------------------------*/
:where(*, *::before, *::after) {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --background: #fffdf7;
  --font-size-base: 16;
  --rem: 1rem / 16;
}
:where(:root) {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  text-align: start;
  text-spacing-trim: trim-start;
  word-break: normal;
  line-break: strict;
  overflow-wrap: break-word;
  hyphens: auto;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
:where([popover]) {
  padding: 0;
  border: none;
  background: none;
}
:where(body) {
  position: relative;
  min-block-size: 100svb;
  margin: unset;
  background: var(--background);
}
:where(h1, h2, h3, h4, h5, h6) {
  margin-block: unset;
  font-size: unset;
}
:where(search) {
  display: block flow;
}
:where(p, blockquote, figure, pre, address, ul, ol, dl) {
  margin-block: 0;
}
:where(blockquote, figure) {
  margin-inline: 0;
}
:where(ul, ol) {
  margin-block: 0;
  padding-inline-start: 0;
}
:where(ul) {
  list-style-type: '';
}
:where(dt) {
  font-weight: 700;
}
:where(dd) {
  margin-inline-start: 0;
}
:where(hr) {
  border-block-start-width: 1px;
}
:where(pre) {
  tab-size: 2;
}
:where(b, strong) {
  font-weight: 700;
}
:where(code, kbd, samp) {
  font-family: 'Noto Sans Mono', monospace;
  font-size: unset;
}
:where(address):where(:lang(ja)) {
  font-style: unset;
}
:where(em):where(:lang(ja)) {
  font-weight: 700;
}
:where(i, cite, em, dfn, var):where(:lang(ja)) {
  font-style: unset;
}
:where(cite, dfn):where(:lang(ja)) {
  --_quotation-start: '「';
  --_quotation-end: '」';
}
:where(cite, dfn):before {
  content: var(--_quotation-start, '“');
}
:where(cite, dfn):after {
  content: var(--_quotation-end, '”');
}
:where(button) {
  touch-action: manipulation;
}
:where(img) {
  display: block;
  width: 100%;
  height: auto;
}
:where(a) {
  color: currentColor;
}
:where(button, a) {
  outline: var(--outlinewidth-lg) solid transparent;
}
/* :where(button, a):hover, */
:where(button, a):focus-within {
  outline: var(--outlinewidth-lg) solid var(--color-border-hover);
  outline-offset: 2px;
}
:where(:focus-visible) {
  --_ring-thickness: 4px;
  --_ring-offset: 2px;
  /* Forcibly override box-shadow to draw focus ring */
  box-shadow: 0 0 0 calc(var(--_ring-offset) + var(--_ring-thickness)) Canvas !important;
  outline: var(--_ring-thickness) solid CanvasText;
  outline-offset: var(--_ring-offset);
}
.visually-hidden {
  position: fixed !important;
  /* keep it on viewport */
  inset-block-start: 0px !important;
  inset-inline-start: 0px !important;
  /* give it non-zero size, VoiceOver on Safari requires at least 2 pixels
			 before allowing buttons to be activated. */
  width: 4px !important;
  height: 4px !important;
  /* visually hide it with overflow and opacity */
  opacity: 0 !important;
  overflow: hidden !important;
  /* remove any margin or padding */
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  /* ensure no other style sets display to none */
  display: block !important;
  visibility: visible !important;
}
main {
  min-height: calc(100svh - var(--footer-height));
  padding-block-start: var(--header-height);
}
:where(a[href^='#']:target) {
  scroll-margin-block: var(--header-height);
}
html {
  scroll-behavior: smooth;
}
.sp-only {
  /* layout */
  display: none;
}
@media (width < 574px) {
  .sp-only {
    display: block;
  }
}
/*--------------------------------
		Skip to Content Styles
		--------------------------------*/
#skip {
  padding: 0;
  overflow: visible;
}
#skip a {
  /* layout */
  position: absolute;
  width: 0;
  height: 0;
  /* position */
  z-index: 9999;
  overflow: auto;
  text-indent: -9999px;
  /* transition */
  transition: all 0.3s ease;
}
#skip a:focus {
  /* layout */
  width: 12em;
  height: auto;
  padding: var(--space-4) var(--space-8);
  margin: var(--space-4);
  /* style */
  background: var(--color-background-inverse);
  color: var(--color-text-bold);
  text-align: center;
  border-radius: var(--rounded-4, 4px);
  /* typography */
  font-size: var(--font-size-16);
  font-weight: var(--fontweight-bold);
  letter-spacing: var(--tracking-4);
  text-indent: 0;
  /* effect */
  box-shadow: var(--elevation-2);
  transform: translateY(0);
  /* shape */
  clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
}
/*--------------------------------
		Common Styles
		--------------------------------*/
.content-width {
  /* layout */
  display: grid;
  grid-template-columns: minmax(8px, 1fr) minmax(var(--container-mincontent), var(--container-maxcontent)) minmax(8px, 1fr);
  grid-auto-flow: row;
  grid-template-areas: '. content .';
  width: 100%;
}
.content-width__inner {
  grid-area: content;
}
section.section {
  padding-block: var(--space-128, 128px);
}
@media (width <= 548px) {
  section.section {
    padding-block: var(--space-64, 64px);
  }
}
.section-link {
  /* layout */
  display: grid;
  place-items: center;
  width: 100%;
}
/*--------------------------------
		Animation Styles
		--------------------------------*/
.fade-in {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/*--------------------------------
		Text Styles
		--------------------------------*/
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
/*--------------------------------
		Button Styles
		--------------------------------*/
.button-container {
  /* layout */
  display: block grid;
  place-items: center;
  /* size */
  width: var(--button-container-width, min-content);
  min-width: var(--button-container-min-width, 180px);
  min-height: var(--button-container-min-height, 48px);
}
.button-base {
  /* layout */
  display: inline-grid;
  grid-template-columns: 1fr;
  place-items: center;
  /* size */
  width: 100%;
  height: 100%;
  /* spacing */
  padding-inline: var(--space-24, 24px);
  padding-block: var(--space-16, 16px);
  /* background */
  background: var(--color-background-default);
  /* border */
  border-radius: var(--rounded-full);
  border: var(--borderwidth-lg) solid var(--color-border-button);
  outline: var(--outlinewidth-md) dashed var(--color-border-bold);
  outline-offset: calc(var(--space-6, 6px) * -1);
  /* typography */
  color: var(--color-text-default);
  font-size: var(--font-size-20);
  font-weight: var(--fontweight-bold);
  letter-spacing: var(--tracking-5);
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  /* transition */
  transition: box-shadow 0.3s;
}
.button-base:hover,
.button-base:focus-within {
  /* border */
  box-shadow: 0 0 0 4px var(--color-border-hover);
}
.button-base.chevron {
  /* layout */
  grid-template-columns: 1fr auto;
  gap: var(--space-4, 4px);
  /* spacing */
  padding-inline: var(--space-24, 24px) calc(var(--space-16, 16px) * 1.5);
}
.button-base.chevron::after {
  content: '';
  /* layout */
  grid-column: 2;
  display: grid;
  place-self: center;
  /* size */
  width: 0.35em;
  height: 0.35em;
  /* border */
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  /* style */
  transform: rotate(-45deg);
}
.example-section__archive-link > .button-base {
  /* border */
  outline-color: var(--color-border-red);
}
.request-button .button-base {
  /* spacing */
  padding-inline: var(--space-24, 24px);
  padding-block: var(--space-6, 6px);
  /* background */
  background: var(--color-background-subtle);
  /* border */
  outline: var(--borderwidth-md) dashed var(--color-border-contrast);
  /* typography */
  font-size: var(--font-size-26);
  line-height: 1.7;
  letter-spacing: var(--tracking-6);
}
.cta {
  /* layout */
  display: grid;
  place-items: center;
  /* size */
  max-width: 100%;
  /* spacing */
  margin-block: var(--space-64, 64px) var(--space-48, 48px);
  margin-inline: auto;
  padding-inline: var(--space-24, 24px);
}
.cta-button {
  /* layout */
  display: grid;
  place-items: center;
  /* size */
  width: 100%;
  max-width: 564px;
  height: auto;
  max-height: 285px;
  /* spacing */
  margin-inline: auto;
  padding: unset;
  /* background */
  background: var(--color-background-default);
  /* border */
  border-radius: var(--rounded-12, 12px);
  border: var(--borderwidth-xl) solid var(--color-border-subtle);
  outline: var(--outlinewidth-lg) solid transparent;
  box-shadow: var(--elevation-1);
  overflow: hidden;
  /* transition */
  transition: outline-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.cta-button:hover,
.cta-button:focus-within {
  /* border */
  outline-color: var(--color-border-hover);
  box-shadow: var(--elevation-4);
}
.cta-button img {
  /* size */
  width: 100%;
  height: auto;
  /* style */
  object-fit: cover;
  object-position: center;
}
@media (width <= 548px) {
  .button-base {
    /* typography */
    font-size: var(--font-size-18);
  }
  .request-button .button-base {
    /* spacing */
    padding-inline: var(--space-16, 16px);
  }
  .button-hidden {
    /* layout */
    display: none;
  }
}
/*--------------------------------
		Card Styles (Common)
		--------------------------------*/
.card {
  /* border */
  border: var(--borderwidth-lg) solid var(--color-border-button);
  outline: var(--outlinewidth-lg) solid transparent;
  border-radius: var(--rounded-16, 16px);
  /* background */
  background: var(--color-background-default);
  /* style */
  overflow: hidden;
  text-decoration: none;
  /* transition */
  transition: outline-color 0.3s ease-in-out;
}
.card:hover,
.card:focus-within {
  /* border */
  outline-color: var(--color-border-hover);
}

/*--------------------------------
		Card Styles (Example)
		--------------------------------*/
.card-example {
  /* layout */
  display: grid !important;
  grid-template-rows: auto 1fr;
  place-items: start center;
  /* size */
  width: 100%;
  max-width: calc(393px - 64px);
  min-height: 420px;
  /* spacing */
  margin: var(--space-2, 2px);
  padding: var(--space-16, 16px);
  gap: var(--space-16, 16px);
}
.card-example__item-img {
  /* layout */
  display: grid;
  place-items: center;
  /* size */
  width: 100%;
  height: auto;
  /* style */
  border-radius: var(--rounded-12, 12px);
  overflow: hidden;
}
.card-example__item-img img {
  /* size */
  width: calc(393px - 64px - 32px);
  height: auto;
  aspect-ratio: var(--aspect-photo);
  /* style */
  object-fit: cover;
}
.card-example__item-content {
  /* layout */
  display: grid;
  place-items: start center;
  /* size */
  width: 100%;
  height: fit-content;
}
.card-example__item-title {
  /* size */
  width: 100%;
  /* typography */
  color: var(--color-text-default);
  font-size: var(--font-size-clamp-20-24);
  font-weight: var(--fontweight-medium);
  line-height: 1.5;
  letter-spacing: var(--tracking-5);
}
.card-example__item-text {
  /* size */
  width: 100%;
  /* typography */
  color: var(--color-text-default);
  font-size: var(--font-size-clamp-16-20);
  font-weight: var(--fontweight-regular);
  line-height: 1.7;
  letter-spacing: var(--tracking-5);
}
/*--------------------------------
		Card Styles (Voice)
		--------------------------------*/
.card-voice {
  /* layout */
  display: grid;
  grid-template-rows: auto 1fr;
  place-items: start center;
  /* size */
  width: 100%;
  max-width: calc(393px - 64px);
  min-height: 464px;
  /* spacing */
  margin: var(--space-2, 2px);
  padding: var(--space-16, 16px);
  gap: var(--space-4, 4px);
}
.card-voice__item-img {
  /* layout */
  display: grid;
  place-items: center;
  /* size */
  width: 100%;
  height: auto;
  aspect-ratio: var(--aspect-photo);
  /* style */
  overflow: hidden;
}
.card-voice__item-img img {
  /* size */
  width: 271px;
  height: auto;
  /* style */
  object-fit: cover;
}
.card-voice__item-content {
  /* layout */
  display: grid;
  place-items: start center;
  /* size */
  width: 100%;
  height: 100%;
  /* spacing */
  gap: var(--space-8, 8px);
}
.card-voice__item-voice {
  /* typography */
  color: var(--color-text-default);
  font-size: var(--font-size-20);
  font-weight: var(--fontweight-regular);
  line-height: 1.4;
  letter-spacing: var(--tracking-5);
}
.card-voice__item-user {
  /* layout */
  width: fit-content;
  place-self: end;
  /* typography */
  color: var(--color-text-default);
  font-size: var(--font-size-20);
}
/*--------------------------------
		List Styles
		--------------------------------*/
.archive-list {
  /* layout */
  display: grid;
  grid-template-columns: 1fr;
}
.archive-list__item {
  /* size */
  width: 100%;
  /* border */
  border-bottom: 1px dashed var(--color-border-default);
  /* spacing */
  padding-bottom: 1em;
  margin-bottom: 1em;
}
.archive-list__item:last-child {
  /* border */
  border-bottom: none;
  /* spacing */
  margin-bottom: 0;
}
.archive-list__link {
  /* layout */
  display: grid;
  grid-template-columns: 1fr;
  /* size */
  width: 100%;
  /* spacing */
  gap: var(--space-4, 4px);
  /* typography */
  color: var(--color-text-default);
  text-decoration: none;
  /* transition */
  transition: outline 0.3s ease-in-out;
}

.archive-list__date {
  /* size */
  width: 100%;
  /* typography */
  color: var(--color-text-default);
  font-size: var(--font-size-16);
  font-weight: var(--fontweight-regular);
  line-height: 1.5;
  letter-spacing: var(--tracking-5);
  text-decoration: none;
}
.archive-list__title {
  /* size */
  width: 100%;
  /* typography */
  color: var(--color-text-default);
  font-size: var(--font-size-20);
  font-weight: var(--fontweight-medium);
  line-height: 1.5;
  letter-spacing: var(--tracking-5);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
}
.archive-list__link:hover .archive-list__title,
.archive-list__link:focus-within .archive-list__title {
  text-decoration-thickness: 3px;
  text-underline-offset: 2px;
}
/*-----------------------
partner-section
	----------------------- */
.partner-section {
  /* layout */
  width: 100%;
  /* spacing */
  margin-block: var(--space-128, 128px);
}
.partner-section__container {
  /* layout */
  display: flex;
  flex-direction: column;
  gap: var(--space-48, 48px);
  /* size */
  width: 100%;
  max-width: var(--container-container-size);
  /* spacing */
  padding-inline: var(--space-16, 16px);
  margin-inline: auto;
}
.partner-section__content {
  /* layout */
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-32, 32px);
  /* size */
  width: 100%;
}
.partner-section__list {
  /* layout */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(calc((var(--container-size-md) - var(--space-16, 16px)) / 3), 100%), 1fr));
  place-items: center;
  gap: var(--space-32, 32px);
  /* size */
  width: 100%;
}
.partner-section__link {
  /* layout */
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  /* size */
  width: 100%;
  max-width: 320px;
  min-height: 360px;
  /* typography */
  text-decoration: none;
}
.partner-section__link-img {
  /* layout */
  width: 100%;
  height: auto;
  aspect-ratio: 320 / 213;
  /* style */
  border: var(--borderwidth-md, 1px) solid var(--color-border-default);
  overflow: hidden;
}
.partner-section__link-img img {
  /* layout */
  width: 100%;
  max-width: 100%;
  height: auto;
  /* style */
  object-fit: cover;
  /* transition */
  transition: transform 0.3s ease-in-out;
}
.partner-section__link:hover .partner-section__link-img img,
.partner-section__link:focus-within .partner-section__link-img img {
  /* style */
  transform: scale(1.1);
}
.partner-section__link-info {
  /* layout */
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  /* size */
  width: 100%;
}
.partner-section__link-content {
  /* layout */
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  gap: var(--space-4, 4px);
  /* size */
  width: 100%;
  height: 100%;
}
.partner-section__link-title {
  /* layout */
  width: 100%;
  /* spacing */
  margin-block-start: var(--space-8, 8px);
  /* typography */
  color: var(--color-text-default);
  font-size: var(--font-size-18);
  font-weight: var(--fontweight-bold);
  line-height: 1.5;
  letter-spacing: var(--tracking-5);
}
.partner-section__link-text {
  /* layout */
  width: 100%;
  /* typography */
  color: var(--color-text-default);
  font-size: var(--font-size-20);
  font-weight: var(--fontweight-regular);
  line-height: 1.7;
  letter-spacing: var(--tracking-5);
}
.partner-section__link-outlink {
  /* layout */
  width: 100%;
  /* typography */
  color: var(--color-text-default);
  font-size: var(--font-size-16);
  font-weight: var(--fontweight-regular);
  line-height: 1.2;
  letter-spacing: var(--tracking-5);
  text-align: end;
}
/* ========================================================================
		HEADER
		 ======================================================================== */
.site-header {
  /* container */
  container-type: inline-size;
  container-name: site-header;
  /* layout */
  display: grid;
  grid-template-columns: var(--space-16, 16px) 1fr var(--space-16, 16px);
  grid-template-areas: '. contact .';
  /* size */
  width: 98%;
  max-width: 100svw;
  /* spacing */
  margin-block: var(--space-4, 4px);
  margin-inline: auto;
  /* position */
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: var(--stack-head, 1000);
  /* style */
  border-radius: var(--rounded-full);
  /* background */
  background: var(--color-background-default);
  /* border */
  box-shadow: var(--elevation-1);
}
.site-header__container {
  /* layout */
  grid-area: contact;
  display: grid;
  grid-template-columns: 1fr auto;
  place-items: center;
  /* spacing */
  column-gap: var(--space-32, 32px);
  padding-block: var(--space-6, 6px);
  padding-inline-end: calc(var(--space-40, 40px) + var(--_toggle-width, 60px));
  /* size */
  max-width: 100%;
}
.site-header__info {
  /* layout */
  display: flex;
  place-self: center start;
  align-items: center;
  justify-content: center;
  /* spacing */
  column-gap: var(--space-24, 24px);
  /* size */
  width: fit-content;
  height: auto;
  /* typography */
  text-decoration: none;
}
.site-header__logo {
  /* layout */
  display: grid;
  place-items: center;
  /* size */
  width: 100%;
  max-width: 220px;
  height: auto;
}
.site-header__logo img {
  /* layout */
  display: block;
  /* size */
  width: clamp(160px, 160px + 5vw, 260px);
  height: auto;
  aspect-ratio: 2363 / 946;
  /* style */
  object-fit: contain;
}
.site-header__contact {
  /* layout */
  display: grid;
  place-items: center;
  /* spacing */
  gap: var(--space-4, 4px);
  /* typography */
  text-decoration: none;
}
.site-header__nav {
  /* layout */
  display: flex;
  align-items: center;
  justify-content: center;
  /* spacing */
  column-gap: var(--space-24, 24px);
}
/*--------------------------------
		Hide header nav when drawer opens
		--------------------------------*/
.site-header.is-drawer-open .site-header__nav {
  /* style */
  visibility: hidden;
  pointer-events: none;
}
/*--------------------------------
		Responsive
		site-header @container
		--------------------------------*/
@container site-header (width < 1080px) {
  .request-button {
    /* position */
    position: fixed;
    inset-block-end: var(--space-8, 8px);
    inset-inline-start: 50%;
    transform: translateX(-50%);
    z-index: calc(var(--stack-foot, 100) + 1);
  }
  .site-header__nav > .link-button:not(.request-button),
  .site-header:has(.toggle[aria-expanded='true']) .request-button {
    /* layout */
    display: none !important;
  }
}
@container site-header (width < 768px) {
  .site-header__info {
    /* spacing */
    column-gap: var(--space-6, 6px);
  }
}
@container site-header (width < 430px) {
  .site-header__container {
    /* spacing */
    column-gap: unset;
  }
}
/* ========================================================================
		 TOGGLE
		 ======================================================================== */
.toggle {
  --_toggle-width: 60px;
  /* layout */
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  /* position */
  position: fixed;
  inset-block-start: clamp(12px, 12px + 1.25vw, 32px);
  inset-inline-end: clamp(24px, 24px + 1.25vw, 40px);
  z-index: var(--stack-toggle, 3000);
  /* size */
  width: var(--_toggle-width);
  height: 64px;
  /* spacing */
  padding: var(--space-6, 6px) var(--space-4, 4px);
  row-gap: var(--space-4, 4px);
  /* border */
  border: none;
  border-radius: var(--rounded-4, 4px);
  /* background */
  background: none;
  /* typography */
  color: var(--color-text-default);
  /* transition */
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, outline-color 0.3s ease-in-out;
  /* style */
  cursor: pointer;
}
.toggle:hover {
  /* background */
  background-color: var(--color-background-hover);
  /* border */
  border-color: var(--color-border-inverse);
  outline-color: var(--color-border-hover);
}
.toggle-icon {
  --toggle-padding: 6px;
  /* layout */
  display: inline-grid;
  place-items: center;
  /* position */
  position: relative;
  /* size */
  width: 48px;
  height: 3px;
  /* border */
  border: none;
  border-radius: var(--rounded-4, 4px);
  /* background */
  background-color: var(--color-border-contrast);
  /* transition */
  transition: all 0.3s ease-in-out;
}

.toggle-icon::before,
.toggle-icon::after {
  /* layout */
  content: '';
  /* position */
  position: absolute;
  /* size */
  width: 100%;
  height: 3px;
  /* border */
  border-radius: var(--rounded-4, 4px);
  /* background */
  background-color: var(--color-border-contrast);
  /* transition */
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  /* style */
  transform-origin: center;
}

.toggle-icon::before {
  /* style */
  transform: translateY(calc(var(--toggle-padding) * -2));
}
.toggle-icon::after {
  /* style */
  transform: translateY(calc(var(--toggle-padding) * 2));
}
.toggle.is-active {
  /* style */
  background-color: var(--color-primary-80);
  border-color: var(--color-border-inverse);
}
.toggle.is-active .toggle-icon {
  /* background */
  background-color: transparent;
}
.toggle.is-active .toggle-icon::before {
  /* style */
  transform: translateY(0) rotate(135deg);
}
.toggle.is-active .toggle-icon::after {
  /* style */
  transform: translateY(0) rotate(-135deg);
}
.toggle[aria-expanded='true'] .toggle-icon {
  /* background */
  background-color: transparent;
}
.toggle[aria-expanded='true'] .toggle-icon::before {
  /* style */
  transform: translateY(0) rotate(135deg);
}
.toggle[aria-expanded='true'] .toggle-icon::after {
  /* style */
  transform: translateY(0) rotate(-135deg);
}
.toggle-text {
  /* layout */
  place-self: center;
  /* spacing */
  padding-block-end: var(--space-2, 2px);
  /* typography */
  font-size: calc(12 / 16 * 1rem);
  font-weight: var(--fontweight-bold);
  line-height: 1;
  letter-spacing: var(--tracking-5);
  text-transform: capitalize;
  white-space: nowrap;
  /* transition */
  transition: opacity 0.3s ease-in-out;
  /* style */
  opacity: 1;
}
.toggle-text.fade-out {
  /* style */
  opacity: 0;
}
/* ========================================================================
		DRAWER
		 ======================================================================== */
.drawer {
  /* layout */
  display: grid;
  place-items: start center;
  /* position */
  position: fixed;
  inset-block-start: 0;
  inset-inline-end: 0;
  z-index: var(--stack-drawer, 2000);
  /* size */
  width: 100%;
  max-width: var(--conteinar-size-sp);
  height: 100svh;
  /* spacing */
  padding-block-start: var(--header-height);
  /* border */
  border-inline-start: 2px solid var(--color-primary-80);
  /* background */
  background: var(--color-primary-80);
  /* style */
  box-shadow: var(--elevation-1);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  overflow-y: auto;
  /* transition */
  transition: all 0.3s ease-in-out;
}
.drawer.is-open {
  /* style */
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.drawer__container {
  /* layout */
  position: relative;
  display: grid;
  grid-template-columns: minmax(var(--space-8, 8px), auto) 1fr minmax(var(--space-8, 8px), auto);
  grid-auto-flow: row;
  gap: var(--space-16, 16px) 0;
  /* spacing */
  margin-inline: auto;
  /* size */
  width: 100%;
  /* spacing */
  padding-block-start: var(--space-32, 32px);
}
.drawer__container::after {
  /* layout */
  content: '';
  grid-column: 1 / -1;
  grid-row: 3;
  /* size */
  width: 100%;
  aspect-ratio: 393 / 116;
  /* spacing */
  margin-block-start: calc(var(--space-32, 32px) * -1);
  /* background */
  background: url(../../assets/img/drawer-bg.webp) no-repeat center center / cover;
  /* style */
  pointer-events: none;
}
/* drawer-search-form */
.drawer-search-form {
  /* layout */
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  max-width: calc(var(--conteinar-size-sp) - calc(var(--space-16, 16px) * 2));
  margin-inline: auto;
}
.drawer-search-form__label {
  /* typography */
  color: var(--color-text-default);
  font-size: var(--font-size-18);
  font-weight: var(--fontweight-regular);
  line-height: 1.2;
  letter-spacing: var(--tracking-6);
}
.drawer-search-form__inner {
  /* layout */
  display: flex;
  align-items: center;
  width: 100%;
  height: var(--button-size-android);
  padding: 0;
  overflow: hidden;
  /* style */
  background: var(--color-background-default);
  border: var(--border-width-md) solid var(--border-subtle);
  outline: var(--border-width-lg) solid transparent;
  border-radius: var(--rounded-full);
  /* transition */
  transition: outline-color 0.3s ease-in-out;
}
.drawer-search-form__input {
  /* layout */
  flex: 1;
  height: 100%;
  padding-inline: var(--space-16, 16px);
  /* style */
  border: none !important;
  background: transparent;
  /* typography */
  font-size: var(--font-size-18);
  line-height: 1.5;
}
.drawer-search-form__submit {
  /* layout */
  display: grid;
  place-items: center;
  width: var(--button-size-android);
  height: var(--button-size-android);
  aspect-ratio: 1;
  /* position */
  position: relative;
  /* style */
  background: var(--color-background-accent);
  border: var(--border-width-lg) solid var(--color-border-accent);
  border-radius: var(--rounded-full);
  color: var(--color-text-inverse);
  /* typography */
  font-size: var(--font-size-16);
  font-weight: var(--fontweight-medium);
  line-height: 1;
  letter-spacing: var(--tracking-10);
  white-space: nowrap;
  /* transition */
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.drawer-search-form__submit::before {
  /* layout */
  content: '';
  display: block;
  width: 44px;
  height: 44px;
  aspect-ratio: var(--aspect-square);
  /* style */
  background: url(../img/icon-search.webp) no-repeat center center / cover;
}
.drawer-search-form__submit:hover,
.drawer-search-form__submit:focus-within {
  /* style */
  background-color: var(--color-background-accent);
}
.drawer-search-form__input:focus,
.drawer-search-form__submit:focus {
  outline: none;
  box-shadow: none;
}
.drawer-search-form__inner:focus-within {
  outline-color: var(--border-focus);
}
.drawer__nav {
  /* layout */
  grid-column: 2;
  grid-row: 2;
  display: grid;
  /* size */
  width: 100%;
  height: auto;
  /* spacing */
  padding-inline: var(--space-16, 16px);
}
.drawer__nav-list {
  /* layout */
  display: flex;
  flex-direction: column;
  /* size */
  width: 100%;
  height: auto;
  /* spacing */
  gap: var(--space-8, 8px);
}
.drawer__nav-item {
  /* layout */
  position: relative;
  /* size */
  width: 100%;
  height: auto;
}
.drawer__nav-item:not(:last-child)::after {
  /* layout */
  content: '';
  position: absolute;
  /* position */
  inset-block-start: calc(100% + var(--space-8, 8px) / 2);
  inset-inline: 0;
  /* size */
  height: 1px;
  /* border */
  border-bottom: 1px dashed var(--color-border-default);
}
.drawer__nav-link {
  /* layout */
  position: relative;
  display: grid;
  grid-template-columns: 1fr 14px;
  align-items: center;
  /* size */
  width: 100%;
  /* spacing */
  gap: var(--space-6, 6px);
  padding-block: var(--space-8, 8px);
  padding-inline: var(--space-16, 16px);
  /* typography */
  color: var(--color-text-default);
  font-size: var(--font-size-22);
  font-weight: var(--fontweight-bold);
  letter-spacing: var(--tracking-5);
  text-decoration: none;
  /* transition */
  transition: all 0.3s ease;
}
.drawer__nav-link::after {
  /* layout */
  content: '';
  justify-self: end;
  /* size */
  width: 7px;
  height: 7px;
  /* border */
  border-top: 3px solid var(--color-border-accent);
  border-right: 3px solid var(--color-border-accent);
  /* style */
  transform: rotate(45deg);
}
.drawer__nav-item .link-button {
  /* typography */
  font-size: var(--font-size-18) !important;
}
.drawer__nav-link:hover,
.drawer__nav-link:focus-within {
  /* typography */
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.drawer__nav-item .button-container {
  /* layout */
  margin-block-start: var(--space-16, 16px);
  margin-inline: auto;
  /* size */
  width: 180px;
}
@media (width < 574px) {
  .drawer__container::after {
    /* spacing */
    margin-block-start: calc(var(--space-16, 16px) * -1);
  }
  .feature-section__title {
    /* typography */
    font-size: calc(24 / 16 * 1rem);
    line-height: 1.5;
  }
  .feature-section__title br {
    /* layout */
    display: block;
  }
}
/*--------------------------------
		Overlay Styles
		--------------------------------*/
.overlay {
  /* layout */
  position: fixed;
  /* position */
  z-index: calc(var(--stack-drawer, 2000) - 1);
  inset: 0;
  /* background */
  background-color: rgba(0, 0, 0, 0.8);
  /* style */
  opacity: 0;
  visibility: hidden;
  /* transition */
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.overlay.is-open {
  /* style */
  opacity: 1;
  visibility: visible;
}
/* ========================================================================
		FOOTER
		 ======================================================================== */
.site-footer {
  /* position */
  position: relative;
  /* layout */
  display: flex;
  flex-direction: column;
  /* size */
  width: 100%;
  /* spacing */
  margin-block-start: var(--space-48, 48px);
}
.site-footer__deco {
  /* layout */
  display: block;
  /* size */
  width: 100%;
  height: auto;
  aspect-ratio: 1500 / 135;
}
.site-footer__deco img {
  /* layout */
  display: block;
  /* size */
  width: 100%;
  height: 100%;
  /* style */
  object-fit: cover;
}
.site-footer__container {
  /* background */
  background: var(--color-background-footer);
  /* spacing */
  padding-block-end: var(--space-48, 48px);
}
.site-footer__wrapper {
  /* layout */
  display: flex;
  flex-direction: column;
  gap: var(--space-24, 24px);
  /* size */
  max-width: var(--container-container-size);
  /* spacing */
  margin-inline: auto;
  padding-inline: var(--space-16, 16px);
}
.site-footer__info {
  /* layout */
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas: 'logo info' 'license info';
  gap: var(--space-32, 32px);
  /* size */
  width: 100%;
  max-width: fit-content;
  height: auto;
}
.site-footer__links {
  /* layout */
  grid-column: 2;
}
.site-footer__nav {
  /* layout */
  grid-column: 2;
  grid-row: 2;
}
.site-footer__logo {
  /* layout */
  grid-area: logo;
  display: grid;
  place-items: center;
  /* size */
  width: 100%;
  height: auto;
}
.site-footer__logo img {
  /* layout */
  display: block;
  /* size */
  width: clamp(260px, 260px + 5vw, 370px);
  height: auto;
}
.site-footer__license {
  /* layout */
  grid-area: license;
  display: grid;
  place-content: start start;
  /* size */
  width: 100%;
}
.site-footer__license-label {
  /* layout */
  grid-column: 1 / 2;
  display: grid;
  place-items: center;
  align-self: start;
  /* size */
  width: 100%;
  /* spacing */
  padding-block: var(--space-2, 2px);
  padding-inline: var(--space-6, 6px);
  /* background */
  background: var(--color-background-subtler);
  /* border */
  border-radius: var(--rounded-4, 4px);
  /* typography */
  color: var(--color-text-default);
  font-size: var(--font-size-clamp-18-22);
  font-weight: var(--fontweight-semibold);
  line-height: 1.5;
  letter-spacing: var(--tracking-5);
}
.site-footer__license-value {
  /* layout */
  grid-column: 2 / 3;
  /* size */
  width: 100%;
  /* typography */
  color: var(--color-text-default);
  font-size: var(--font-size-clamp-18-22);
  font-weight: var(--fontweight-medium);
  line-height: 1.5;
  letter-spacing: var(--tracking-5);
  text-align: start;
}
.site-footer__license-label.visually-hidden + .site-footer__license-value {
  /* layout */
  grid-column: 1 / -1;
}
@media (width <= 768px) {
  .site-footer__license {
    /* layout */
    gap: var(--space-8, 8px);
  }
  .site-footer__license-value {
    /* layout */
    grid-column: 1 / -1;
    /* spacing */
    margin-block-end: var(--space-8, 8px);
  }
  .site-footer__license-label.visually-hidden + .site-footer__license-value {
    /* spacing */
    margin-block-end: unset;
  }
}
.site-footer__address {
  /* layout */
  display: flex;
  flex-direction: column;
  gap: var(--space-16, 16px);
  /* typography */
  font-size: var(--font-size-clamp-14-18);
  font-weight: var(--fontweight-regular, 400);
  line-height: 1.7;
  letter-spacing: var(--tracking-6);
}
.site-footer__info-company {
  /* layout */
  grid-area: info;
  display: grid;
  grid-template-columns: 1fr;
  /* size */
  width: 100%;
  /* style */
  align-items: baseline;
}
.site-footer__info-label {
  /* layout */
  display: grid;
  place-items: center;
  align-self: start;
  /* size */
  width: fit-content;
  /* spacing */
  padding-block: var(--space-2, 2px);
  padding-inline: var(--space-6, 6px);
  /* background */
  background: var(--color-background-subtler);
  /* border */
  border-radius: var(--rounded-4, 4px);
  /* typography */
  color: var(--color-text-default);
  font-size: var(--font-size-clamp-18-20);
  font-weight: var(--fontweight-semibold);
  line-height: 1.5;
  letter-spacing: var(--tracking-5);
}
.site-footer__info-value {
  /* size */
  width: 100%;
  /* spacing */
  padding-inline-start: var(--space-8, 8px);
  padding-block-end: var(--space-12, 12px);
  /* typography */
  color: var(--color-text-default);
  font-size: var(--font-size-clamp-18-20);
  font-weight: var(--fontweight-regular);
  line-height: 1.5;
  letter-spacing: var(--tracking-5);
  text-align: start;
}
.site-footer__info-label.visually-hidden + .site-footer__info-value {
  /* spacing */
  padding-inline-start: unset;
  padding-block-end: unset;
}
.site-footer__info-label.visually-hidden:nth-of-type(2) + .site-footer__info-value {
  /* spacing */
  padding-inline-start: unset;
  padding-block-end: var(--space-16, 16px);
}
.site-footer__link-container {
  /* layout */
  display: flex;
  flex-direction: column;
  gap: var(--space-48, 48px);
  /* size */
  width: 100%;
}
.site-footer__links {
  /* layout */
  display: grid;
  grid-template-columns: 1fr;
  /* size */
  width: 100%;
}
.site-footer__links-list {
  /* layout */
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  align-items: center;
  gap: var(--space-32, 32px);
  /* size */
  width: 100%;
  height: auto;
}
.site-footer__links-item {
  /* layout */
  display: grid;
  place-items: center;
  /* size */
  width: 100%;
  height: auto;
  /* spacing */
  padding-block: var(--space-4, 4px);
  padding-inline: var(--space-4, 4px);
}
.site-footer__links-link {
  /* layout */
  display: grid;
  place-items: center;
  /* size */
  width: 100%;
  height: auto;
  /* spacing */
  padding-block: var(--space-8, 8px);
  padding-inline: var(--space-4, 4px);
  /* typography */
  color: var(--color-text-default);
  font-size: var(--font-size-16, 16px);
  font-weight: var(--fontweight-bold, 700);
  letter-spacing: var(--tracking-6);
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
  white-space: nowrap;
}
.site-footer__links-link:hover,
.site-footer__links-link:focus-within {
  /* typography */
  text-decoration-thickness: 3px;
  text-underline-offset: 2px;
}
.site-footer__copyright {
  /* layout */
  display: grid;
  place-items: center;
  /* size */
  width: 100%;
  height: auto;
  /* spacing */
  padding-block: var(--space-16, 16px);
  /* background */
  background-color: var(--color-background-main);
}
.site-footer__copyright p {
  /* typography */
  color: var(--color-text-default);
  font-size: var(--font-size-clamp-16-20);
  font-weight: var(--fontweight-bold, 700);
  letter-spacing: var(--tracking-6);
  text-align: center;
}
@media (width < 1102px) {
  .site-footer__copyright {
    /* spacing */
    padding-block-end: var(--space-96, 96px);
  }
}
@media (width < 768px) {
  .site-footer__info {
    /* layout */
    grid-template-columns: 1fr;
    grid-template-areas: 'logo' 'license' 'info';
    place-items: center;
    gap: var(--space-8, 8px);
    /* spacing */
    margin-inline: auto;
  }
  .site-footer__info-company {
    /* layout */
    grid-template-columns: 1fr;
  }
  .site-footer__links-list {
    /* layout */
    grid-template-columns: 1fr;
    place-items: center;
    gap: var(--space-0, 0px);
  }
}
/* -------------------------------
	reread
	------------------------------- */
.reread {
  /* position */
  position: fixed;
  inset-block-end: clamp(calc(350px * 0.01), 4vw, calc(1440px * 0.04));
  inset-inline-end: var(--space-8, 8px);
  z-index: calc(var(--stack-foot, 100) + 2);
  /* style */
  opacity: 0;
  visibility: hidden;
  /* transition */
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.reread.is-visible {
  /* style */
  opacity: 1;
  visibility: visible;
}
.reread-link {
  /* layout */
  display: block;
  /* size */
  width: clamp(64px, calc(100vw * 0.05), 80px);
  height: 80px;
  /* transition */
  transition: transform 0.3s ease-in-out;
}
.reread-link:hover {
  /* style */
  transform: translateY(-5px);
}
.reread-link__icon {
  /* layout */
  display: grid;
  place-items: center;
  /* size */
  width: 100%;
  height: 100%;
}
.reread-link__icon img {
  /* layout */
  display: block;
  /* size */
  width: 100%;
  height: 100%;
  /* style */
  object-fit: contain;
}
/* ========================================================================
		MODAL
		 ======================================================================== */
.modal {
  /* layout */
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* position */
  margin-inline: auto;
  z-index: var(--stack-modal, 4000);
  /* size */
  width: 100%;
  height: 100%;
  /* background */
  background: transparent;
  /* border */
  border: none;
  outline: none;
  /* style */
  pointer-events: auto;
  /* transition */
  transition: opacity 0.3s;
}
.modal::backdrop {
  /* background */
  background: rgba(0, 0, 0, 0.8);
}
.modal-content {
  /* layout */
  display: grid;
  gap: var(--space-24, 24px);
  /* position */
  position: relative;
  /* size */
  width: 100%;
  max-width: 480px;
  /* spacing */
  padding-block: var(--space-48, 48px) var(--space-24, 24px);
  padding-inline: var(--space-24, 24px);
  /* background */
  background: var(--color-background-inverse);
  /* border */
  border-radius: var(--rounded-24, 24px);
  outline: none;
  box-shadow: var(--elevation-2);
}
.modal-close {
  /* layout */
  display: grid;
  place-items: center;
  /* position */
  position: absolute;
  inset-block-start: var(--spacing-8, 8px);
  inset-inline-end: var(--spacing-8, 8px);
  z-index: var(--stack-top);
  /* size */
  width: var(--button-size-android, 48px);
  height: var(--button-size-android, 48px);
  /* background */
  background: var(--color-background-inverse);
  /* border */
  border: var(--borderwidth-lg) solid var(--color-border-accent);
  outline: var(--outlinewidth-lg) solid transparent;
  border-radius: var(--rounded-full);
  box-shadow: var(--elevation-1);
  /* typography */
  color: var(--color-text-default);
  font-size: var(--font-size-24);
  /* style */
  cursor: pointer;
  /* transition */
  transition: outline-color 0.3s ease-in-out;
}
.modal-close:hover,
.modal-close:focus-within {
  /* border */
  outline-color: var(--color-border-hover);
}
.modal-section {
  /* layout */
  display: grid;
  grid-auto-flow: row;
  gap: var(--space-4, 4px);
  place-items: center;
}
.modal-title {
  /* layout */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
  height: auto;
  /* typography */
  color: var(--color-text-subtle);
  font-size: var(--font-size-24);
  font-weight: var(--fontweight-bold);
  line-height: 1.5;
  letter-spacing: var(--tracking-5);
}
.modal-title::before {
  /* layout */
  content: '';
  display: inline-block;
  /* size */
  width: 6px;
  height: 1em;
  /* spacing */
  margin-inline-end: var(--space-8, 8px);
  /* background */
  background: var(--color-border-bold);
  /* border */
  border-radius: var(--rounded-4, 4px);
}
.modal-tel-block {
  /* layout */
  display: grid;
  grid-auto-flow: row;
  gap: var(--space-4, 4px);
  place-items: center;
}
.modal-tel-label {
  /* layout */
  display: grid;
  place-items: center;
  align-self: start;
  /* size */
  width: fit-content;
  /* spacing */
  padding-block: var(--space-2, 2px);
  padding-inline: var(--space-6, 6px);
  /* background */
  background: var(--color-background-subtler);
  /* border */
  border-radius: var(--rounded-4, 4px);
  /* typography */
  color: var(--color-text-default);
  font-size: var(--font-size-clamp-18-20);
  font-weight: var(--fontweight-semibold);
  line-height: 1.5;
  letter-spacing: var(--tracking-5);
}
.modal-tel-value {
  /* layout */
  display: grid;
  place-items: center;
  /* spacing */
  margin-block-end: var(--space-8, 8px);
  /* typography */
  color: var(--color-text-default);
}
.modal-tel-value a {
  /* typography */
  color: var(--color-text-default);
  font-size: var(--font-size-40);
  font-weight: var(--fontweight-bold);
  letter-spacing: var(--tracking-5);
  text-decoration: none;
}
.modal-tel-value a:hover,
.modal-tel-value a:focus-within {
  /* typography */
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 2px;
}
.modal-tel {
  /* layout */
  display: grid;
  place-items: center;
  /* spacing */
  margin-inline: auto;
  /* typography */
  color: var(--color-text-default);
  font-size: var(--font-size-48);
  font-weight: var(--fontweight-bold);
  line-height: 1.7;
  letter-spacing: var(--tracking-5);
  text-align: center;
  text-decoration: none;
}
.modal-qr-block {
  /* layout */
  display: grid;
  place-items: center;
  /* spacing */
  margin-inline: auto;
  padding-block: var(--space-16, 16px);
}
.modal-qr {
  /* layout */
  display: block;
  /* spacing */
  margin-block-end: var(--space-16, 16px);
  /* size */
  width: 180px;
  height: 180px;
}
.modal-qr-block a img {
  /* style */
  border-radius: var(--rounded-8, 8px);
  outline: var(--outlinewidth-lg) solid transparent;
}
.modal-qr-block a img:hover,
.modal-qr-block a img:focus-within {
  /* style */
  outline-color: var(--color-border-hover);
}
.modal-qr-note {
  /* typography */
  font-size: var(--font-size-20);
  color: var(--color-text-subtle);
  /* spacing */
  margin-block-start: var(--space-8, 8px);
}
.modal:not([open]) {
  /* layout */
  display: none;
}
.modal-tel:focus-visible {
  /* border */
  outline: 2px solid var(--color-border-focused);
  outline-offset: 2px;
}
@media (width <= 548px) {
  .modal-content {
    /* spacing */
    padding-block: var(--space-24, 24px);
    padding-inline: var(--space-16, 16px);
  }
  .modal-title {
    /* typography */
    font-size: var(--font-size-18);
  }
  .modal-tel-value a {
    /* typography */
    font-size: var(--font-size-30);
  }
  .modal-tel {
    /* typography */
    font-size: var(--font-size-32);
  }
  .modal-qr-block {
    /* spacing */
    padding-block: var(--space-16, 16px);
  }
  .modal-qr-note {
    /* typography */
    font-size: var(--font-size-16);
  }
}
/* ========================================================================
		PAGE TITLE
		 ======================================================================== */
.page-title {
  /* layout */
  width: 100%;
  /* spacing */
  margin-block-end: var(--space-32, 32px);
  padding-block: var(--space-32, 32px);
  /* background */
  background-color: var(--color-background-subtle);
}
.page-title h1 {
  /* layout */
  display: grid;
  place-items: center;
  /* spacing */
  padding-block: var(--space-16, 16px);
  padding-inline: var(--space-16, 16px);

  /* typography */
  font-size: var(--font-size-clamp-28-36);
  font-weight: var(--fontweight-bold);
  line-height: 1.4;
  letter-spacing: var(--tracking-4);
}
/* ========================================================================
		BREADCRUMBS
		 ======================================================================== */
.breadcrumbs {
  /* layout */
  width: 100%;
  /* spacing */
  padding-block: var(--space-16, 16px);
  /* background */
  background-color: var(--color-background-subtler);
}

.breadcrumbs__link {
  /* spacing */
  margin-inline-end: var(--space-4, 4px);
  /* typography */
  color: var(--color-text-link);
  font-size: var(--font-size-clamp-14-18);
  font-weight: var(--fontweight-regular);
  line-height: 1.4;
  letter-spacing: var(--tracking-5);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
}
.breadcrumbs__link::visited {
  /* typography */
  color: var(--color-text-link);
}
.breadcrumbs__link:hover,
.breadcrumbs__link:focus-within {
  /* style */
  text-decoration-thickness: 3px;
  text-underline-offset: 2px;
}
.breadcrumbs__separator {
  /* spacing */
  margin-inline-end: var(--space-4, 4px);
  /* typography */
  color: var(--color-text-subtle);
  font-size: var(--font-size-16);
  font-weight: var(--fontweight-regular);
  line-height: 1.4;
}
.breadcrumbs__current {
  /* typography */
  color: var(--color-text-default);
  font-size: var(--font-size-clamp-14-18);
  font-weight: var(--fontweight-regular);
  line-height: 1.4;
  letter-spacing: var(--tracking-5);
}
/* ========================================================================
		PAGE STYLES
		 ======================================================================== */
/*-----------------
		txtbox common
		-----------------*/
/* テキスト */
:root {
  --txtbox-font-size: var(--font-size-22);
  --txtbox-font-weight: var(--fontweight-regular);
  --txtbox-line-height: 1.7;
  --txtbox-letter-spacing: var(--tracking-4);
  /* リンク */
  --txtbox-link-color: var(--color-text-link);
  --txtbox-link-color-hover: ;
  /* マーカー */
  --txtbox-marker-color: var(--color-marker-default);
  --txtbox-marker-size: 5px;
  /*-----------------
		heading
		-----------------*/
  /* h1 */
  --heading-h1-border-color: var(--color-border-bold);
  --heading-h1-text-color: var(--color-text-default);
  --heading-h1-font-size: var(--font-size-clamp-30-44);
  --heading-h1-font-weight: var(--fontweight-bold);
  --heading-h1-line-height: 1.4;
  --heading-h1-letter-spacing: var(--tracking-5);
  /* h2 */
  --heading-h2-bg-color: var(--color-background-subtler);
  /* --heading-h2-marker-color: var(--border-theme); */
  --heading-h2-border-color: var(--color-border-subtle);
  --heading-h2-outline-color: var(--color-border-bold);
  --heading-h2-text-color: var(--color-text-default);
  --heading-h2-font-size: var(--font-size-32);
  --heading-h2-font-weight: var(--fontweight-bold);
  --heading-h2-line-height: 1.5;
  --heading-h2-letter-spacing: var(--tracking-5);
  /* h3 */
  /* --heading-h3-marker-color: var(--border-theme); */
  /* --heading-h3-border-color: var(--border-subtler); */
  --heading-h3-text-color: var(--color-text-default);
  --heading-h3-font-size: var(--font-size-30);
  --heading-h3-font-weight: var(--fontweight-bold);
  --heading-h3-line-height: 1.5;
  --heading-h3-letter-spacing: var(--tracking-5);
  /* h4 */
  --heading-h4-marker-color: var(--border-accent);
  --heading-h4-text-color: var(--color-text-default);
  --heading-h4-font-size: var(--font-size-26);
  --heading-h4-font-weight: var(--fontweight-bold);
  --heading-h4-line-height: 1.5;
  --heading-h4-letter-spacing: var(--tracking-5);
  /* h5 */
  --heading-h5-marker-color: var(--color-marker-default);
  --heading-h5-border-radius: var(--rounded-none);
  --heading-h5-text-color: var(--color-text-default);
  --heading-h5-font-size: var(--font-size-24);
  --heading-h5-font-weight: var(--fontweight-bold);
  --heading-h5-line-height: 1.5;
  --heading-h5-letter-spacing: var(--tracking-5);
  /* h6 */
  --heading-h6-marker-color: none;
  --heading-h6-text-color: var(--color-text-default);
  --heading-h6-font-size: var(--font-size-22);
  --heading-h6-font-weight: var(--fontweight-bold);
  --heading-h6-line-height: 1.6;
  --heading-h6-letter-spacing: var(--tracking-6);
  /*-----------------
		table
		-----------------*/
  --table-border-color: var(--border-table);
  --table-header-bg-color: var(--color-background-subtler);
  --table-cell-bg-color: var(--color-background-default);
  --table-text-color: var(--color-text-default);
  --table-header-text-color: var(--color-text-default);
}
.txtbox {
  /* layout */
  display: grid;
  /* size */
  width: 100%;
  max-width: var(--container-container-size);
  /* spacing */
  margin-inline: auto;
  padding-inline: var(--space-16, 16px);
}
.txtbox:not(h1, h2, h3, h4, h5, h6) {
  /* typography */
  color: var(--color-text-default);
  font-size: var(--txtbox-font-size);
  font-weight: var(--txtbox-font-weight);
  line-height: var(--txtbox-line-height);
  letter-spacing: var(--txtbox-letter-spacing);
}
.txtbox h1 {
  /* layout */
  position: relative;
  display: flex;
  width: 100%;
  padding-block: var(--space-32, 32px) var(--space-8, 8px);
  padding-inline: var(--space-16, 16px);
  align-items: start;
  /* typography */
  color: var(--color-text-default);
  font-size: var(--heading-h1-font-size);
  font-weight: var(--heading-h1-font-weight);
  line-height: var(--heading-h1-line-height);
  letter-spacing: var(--heading-h1-letter-spacing);
}
.txtbox h1::after {
  /* layout */
  content: '';
  position: absolute;
  inset-block-end: 0;
  inset-inline-end: 0;
  /* size */
  width: 100%;
  height: var(--borderwidth-xl);
  /* background */
  background-color: var(--heading-h1-border-color);
}
.txtbox h2 {
  /* layout */
  display: flex;
  width: 100%;
  /* spacing */
  margin-block: var(--space-48, 48px) var(--space-24, 24px);
  padding: var(--space-16, 16px) var(--space-24, 24px);
  /* background */
  background-color: var(--heading-h2-bg-color);
  /* border */
  border: var(--borderwidth-md) solid var(--heading-h2-border-color);
  outline: var(--outlinewidth-md) dashed var(--heading-h2-outline-color);
  outline-offset: calc(var(--space-6, 6px) * -1);
  border-radius: var(--rounded-8, 8px);
  /* typography */
  color: var(--heading-h2-text-color);
  font-size: var(--heading-h2-font-size);
  font-weight: var(--heading-h2-font-weight);
  line-height: var(--heading-h2-line-height);
  letter-spacing: var(--heading-h2-letter-spacing);
}
.article-content > .txtbox h2:first-child {
  margin-block-start: 0;
}
.txtbox h3 {
  --_marker-size: 32px;
  /* layout */
  position: relative;
  /* spacing */
  margin-block: var(--space-16, 16px);
  padding-inline-start: calc(var(--_marker-size) + var(--space-12, 12px));
  /* typography */
  color: var(--heading-h3-text-color);
  font-size: var(--heading-h3-font-size);
  font-weight: var(--heading-h3-font-weight);
  line-height: var(--heading-h3-line-height);
  letter-spacing: var(--heading-h3-letter-spacing);
}
.txtbox h3::before {
  /* layout */
  content: '';
  position: absolute;
  inset-block-start: 0.2em;
  inset-inline-start: var(--space-4, 4px);
  /* size */
  width: var(--_marker-size);
  height: var(--_marker-size);
  aspect-ratio: var(--aspect-square);
  /* background */
  background: url(../../assets/img/clover-marker.webp) no-repeat center center / contain;
}
.txtbox h4 {
  /* layout */
  display: block;
  /* position */
  position: relative;
  /* spacing */
  margin-block: 0.7em;
  margin-inline-start: 0.5em;
  /* typography */
  color: var(--heading-h4-text-color);
  font-size: var(--heading-h4-font-size);
  font-weight: var(--heading-h4-font-weight);
  line-height: var(--heading-h4-line-height);
  letter-spacing: var(--heading-h4-letter-spacing);
}
.txtbox h4::after {
  /* layout */
  content: '';
  position: absolute;
  inset-block-start: 100%;
  inset-inline-start: 0;
  /* size */
  width: 100%;
  height: 2px;
  /* background */
  background: var(--color-border-bold);
}
/* heading h5 */
.txtbox h5 {
  --_marker-size: 16px;
  /* layout */
  position: relative;
  /* spacing */
  padding-inline-start: calc(var(--_marker-size) + 1.4em);
  /* typography */
  color: var(--heading-h5-text-color);
  font-size: var(--heading-h5-font-size);
  font-weight: var(--heading-h5-font-weight);
  line-height: var(--heading-h5-line-height);
  letter-spacing: var(--heading-h5-letter-spacing);
}
.txtbox h5::before {
  content: '';
  position: absolute;
  inset-inline-start: 1em;
  inset-block-start: 50%;
  transform: translateY(-50%);
  width: var(--_marker-size);
  height: var(--_marker-size);
  /* background */
  background: var(--heading-h5-marker-color);
}
.txtbox h6 {
  /* spacing */
  margin-block-start: 1rem;
  margin-block-end: 0.5rem;
  /* typography */
  color: var(--heading-h6-text-color);
  font-size: var(--heading-h6-font-size);
  font-weight: var(--heading-h6-font-weight);
  line-height: var(--heading-h6-line-height);
  letter-spacing: var(--heading-h6-letter-spacing);
}
.txtbox p {
  /* spacing */
  margin-block: var(--space-16, 16px) var(--space-24, 24px);
  margin-inline-start: var(--space-16, 16px);
  /* typography */
  color: var(--color-text-default);
  text-indent: 1em;
}
.txtbox ul,
.txtbox ol {
  /* spacing */
  margin-block-end: var(--space-12, 12px);
  padding-inline-start: var(--space-32, 32px);
  /* typography */
  color: var(--color-text-default);
  list-style-position: inside;
}
.txtbox ol {
  /* style */
  list-style-type: decimal;
}
.txtbox li {
  /* spacing */
  margin-block: var(--space-8, 8px);
}
.txtbox li ul,
.txtbox li ol {
  /* spacing */
  margin-block: var(--space-8, 8px);
  padding-inline-start: var(--space-16, 16px);
}
.txtbox ul li {
  /* style */
  list-style-type: disc;
}
.txtbox ul li::marker {
  /* typography */
  color: var(--color-marker-default);
}
.txtbox li > ul,
.txtbox li > ol {
  /* spacing */
  margin-block-end: var(--space-16, 16px);
}

.txtbox a {
  /* typography */
  color: var(--color-text-link);
}
.txtbox a:hover,
.txtbox a:focus-within {
  /* style */
  text-decoration-thickness: 3px;
  text-underline-offset: 2px;
}
.txtbox table {
  /* size */
  width: 100%;
  /* style */
  border-collapse: collapse;
  /* spacing */
  margin-block-end: 1.5rem;
}
.txtbox th,
.txtbox td {
  /* border */
  border: 1px solid var(--color-border-default);
  /* spacing */
  padding: 0.75rem;
}
.txtbox th {
  /* background */
  background-color: var(--color-background-subtler);
  /* typography */
  font-weight: var(--fontweight-bold, 700);
}
.txtbox tr:nth-child(even) {
  /* background */
  background-color: var(--color-background-table);
}
.txtbox img {
  /* size */
  max-width: 100%;
  height: auto;
  /* layout */
  display: block;
}
.article-date {
  /* layout */
  display: inline-block;
  /* style */
  text-align: right;
  /* typography */
  color: var(--color-text-default);
  font-size: var(--font-size-16);
  font-weight: var(--fontweight-regular);
  line-height: 1.2;
  letter-spacing: var(--tracking-5);
}
.article-date__label {
  /* layout */
  display: inline-grid;
  place-items: center;
  /* spacing */
  margin-inline-end: var(--space-4, 4px);
  padding-block: var(--space-4, 4px);
  padding-inline: var(--space-8, 8px) var(--space-6, 6px);
  /* background */
  background-color: var(--color-background-subtle);
  /* border */
  border-radius: var(--rounded-4, 4px);
  border: var(--borderwidth-md) solid var(--color-border-subtle);
  /* typography */
  font-size: var(--font-size-14);
  font-weight: var(--fontweight-bold);
  line-height: 1.2;
  letter-spacing: var(--tracking-5);
}
.txtbox .alignleft,
.txtbox .alignright {
  /* layout */
  float: left;
  /* spacing */
  margin-right: 1.5rem;
  margin-block-end: 1rem;
}
.txtbox .alignright {
  /* layout */
  float: right;
  /* spacing */
  margin-left: 1.5rem;
  margin-block-end: 1rem;
}
.txtbox .aligncenter {
  /* spacing */
  margin-left: auto;
  margin-right: auto;
  margin-block-end: 1rem;
}
.txtbox .wp-caption {
  /* typography */
  font-size: 0.9rem;
  font-style: italic;
  text-align: center;
  color: #666;
  /* spacing */
  margin-block-start: 0.5rem;
}
.txtbox blockquote {
  /* border */
  border-left: 4px solid var(--color-border-bold);
  /* spacing */
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  /* background */
  background-color: var(--color-background-subtler);
  /* typography */
  font-style: italic;
}
.txtbox blockquote p {
  /* spacing */
  margin-block-end: 0.5rem;
}
.txtbox blockquote cite {
  /* layout */
  display: block;
  /* typography */
  font-size: 0.9rem;
  color: #666;
  font-style: normal;
  /* spacing */
  margin-block-start: 0.5rem;
}
.txtbox pre,
.txtbox code {
  /* typography */
  font-family: monospace;
  /* background */
  background-color: #f5f5f5;
  /* border */
  border-radius: var(--rounded-4, 4px);
}
.txtbox pre,
.txtbox code {
  /* spacing */
  padding: 1rem;
  /* style */
  overflow-x: auto;
  /* border */
  border: 1px solid #ddd;
  /* spacing */
  margin-block-end: 1.5rem;
}
.txtbox code {
  /* spacing */
  padding: 0.2rem 0.4rem;
}
.txtbox :is(table, p, ul, ol) + :is(h2, h3, h4, h5) {
  /* spacing */
  margin-block-start: 1.8rem;
}
.txtbox h1 + * {
  /* spacing */
  margin-block-start: var(--space-32, 32px);
}
.wp-block-columns {
  margin-block-end: var(--space-40, 40px);
}
.wp-block-table thead {
  border-bottom: unset;
}
@media (width < 768px) {
  .txtbox h1 {
    font-size: calc(var(--heading-h1-font-size) * 0.85);
  }
  .txtbox h2 {
    font-size: calc(var(--heading-h2-font-size) * 0.85);
  }
  .txtbox h3 {
    padding-inline-start: calc(32px * 0.8 + var(--space-12, 12px));
    font-size: calc(var(--heading-h3-font-size) * 0.85);
  }
  .txtbox h3::before {
    width: calc(32px * 0.8);
    height: calc(32px * 0.8);
  }
  .txtbox h4 {
    font-size: calc(var(--heading-h4-font-size) * 0.85);
  }
  .txtbox h5 {
    font-size: calc(var(--heading-h5-font-size) * 0.9);
  }
  .txtbox h6 {
    font-size: calc(var(--heading-h6-font-size) * 0.9);
  }
  .txtbox table {
    font-size: 1rem;
  }
  .txtbox ul,
  .txtbox ol {
    /* spacing */
    padding-inline-start: var(--space-24, 24px);
  }
}
/* ========================================================================
		MENU
		 ======================================================================== */
.menu__container {
  /* size */
  width: 100%;
  /* spacing */
  margin-block: var(--space-32, 32px);
}
.menu__list {
  /* layout */
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (width >= 768px) {
  .menu__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.related-links .menu__item {
  /* style */
  list-style-type: '';
}
.menu__item a {
  /* position */
  position: relative;
  /* size */
  height: 100%;
  min-height: 96px;
  /* spacing */
  padding-block: var(--space-16, 8px);
  padding-inline: var(--space-16, 16px);
  /* background */
  background-color: var(--color-background-default);
  /* border */
  border-radius: var(--rounded-8, 8px);
  border: var(--borderwidth-md) solid var(--color-border-button);
  outline: var(--outlinewidth-lg) solid transparent;
  /* typography */
  color: var(--color-text-default);
  font-size: var(--font-size-22);
  font-weight: var(--fontweight-bold);
  line-height: 1.2;
  letter-spacing: var(--tracking-5);
  text-decoration: none;
  /* transition */
  transition: outline-color 0.3s ease;
}
.menu__item.has-thumb a {
  /* layout */
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: 'thumb title arrow';
  gap: var(--space-6, 6px);
  /* spacing */
  padding-inline-start: var(--space-12, 12px);
}
.menu__item.has-thumb a .menu__item-thumb {
  /* layout */
  grid-area: thumb;
  display: grid;
  place-items: center;
  /* size */
  width: 56px;
  height: 56px;
  aspect-ratio: var(--aspect-square);
  /* background */
  background: var(--color-background-default);
  /* border */
  border-radius: var(--rounded-full);
}
.menu__item.has-thumb a .menu__item-thumb img {
  /* size */
  width: 56px;
  height: 56px;
  aspect-ratio: var(--aspect-square);
  /* style */
  object-fit: cover;
}
.menu__item.has-thumb a .menu__item-title {
  /* layout */
  grid-area: title;
}
.menu__item a::after {
  /* layout */
  grid-area: arrow;
  content: '';
  place-self: end;
  /* size */
  width: 24px;
  height: 24px;
  /* background */
  background: url(../../assets/img/linkarrow.webp) no-repeat center center / contain;
  background-color: var(--color-background-subtle);
  /* border */
  border-radius: var(--rounded-full);
  border: var(--borderwidth-lg) solid var(--color-border-default);
}
.menu__item.no-thumb a {
  /* layout */
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: 'title arrow';
  gap: var(--space-6, 6px);
}
.menu__item a:hover,
.menu__item a:focus-within {
  /* style */
  outline-color: var(--color-border-hover);
}
/* ========================================================================
		ARCHIVE
		 ======================================================================== */
.news-archive {
  /* size */
  width: 100%;
  /* spacing */
  margin-block: var(--space-32, 32px);
}
.news-archive__list {
  /* layout */
  display: grid;
  grid-template-columns: 1fr;
  /* spacing */
  padding-block-end: var(--space-32, 32px);
}
.news-archive__item {
  /* border */
  border-bottom: 1px dashed var(--color-border-default);
  /* spacing */
  margin-bottom: 0;
  padding-bottom: 0;
}
.news-archive__item:last-child {
  border-bottom: none;
}
.news-archive__item a {
  /* layout */
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-flow: row;
  /* spacing */
  padding-block: var(--space-24, 24px);
  padding-inline: var(--space-16, 16px);
  /* typography */
  color: var(--color-text-default);
  text-decoration: none;
}
.news-archive__item a time {
  /* typography */
  color: var(--color-text-subtle);
  font-size: var(--font-size-16);
  font-weight: var(--fontweight-regular);
  line-height: 1.2;
  letter-spacing: var(--tracking-5);
}
.news-archive__item a span {
  /* typography */
  font-size: var(--font-size-20);
  font-weight: var(--fontweight-medium);
  line-height: 1.4;
  letter-spacing: var(--tracking-5);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
}
.news-archive__item a:hover span,
.news-archive__item a:focus-within span {
  /* typography */
  text-decoration-thickness: 3px;
  text-underline-offset: 2px;
}
.pagination {
  /* layout */
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16, 16px);
}
.pagination__list {
  /* layout */
  display: flex;
  justify-content: space-between;
}
.pagination__item a {
  /* layout */
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16, 16px);
  /* spacing */
  padding-block: var(--space-8, 8px);
  padding-inline: var(--space-16, 16px);
  /* background */
  background-color: var(--color-background-default);
  /* border */
  border-radius: var(--rounded-8, 8px);
  border: var(--borderwidth-md) solid var(--color-border-button);
  outline: var(--outlinewidth-lg) solid transparent;
  /* typography */
  color: var(--color-text-default);
  font-size: var(--font-size-16);
  font-weight: var(--fontweight-medium);
  text-decoration: none;
  /* transition */
  transition: outline-color 0.3s ease;
}
.pagination__item a:hover,
.pagination__item a:focus-within {
  /* style */
  outline-color: var(--color-border-hover);
}

/* 管理バーが表示されている場合のスタイル */
body.admin-bar .site-header {
  top: var(--wp-admin--admin-bar--height, 32px);
}
body.admin-bar .toggle {
  top: calc(var(--wp-admin--admin-bar--height, 32px) + clamp(12px, 12px + 1.25vw, 32px));
}

/* ========================================================================
	VOICE archive list
		 ======================================================================== */
.archive .voice-section__list {
  /* layout */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(calc((var(--container-size-md) - var(--space-24, 24px)) / 2), 100%), 1fr));
  row-gap: var(--space-24, 24px);
  place-items: center;
}

/*-----------------------
sitemap
	----------------------- */
.sitemap-content {
  /* spacing */
  padding-block: var(--space-64, 64px);
}
.sitemap-section {
  /* spacing */
  margin-block-end: var(--space-48, 48px);
}
.sitemap-section h2 {
  /* typography */
  color: var(--color-text-default);
  font-size: var(--font-size-clamp-22-28);
  font-weight: var(--fontweight-bold);
  line-height: 1.4;
  letter-spacing: var(--tracking-4);
  /* spacing */
  margin-block-end: var(--space-16, 16px);
  /* border */
  border-bottom: var(--borderwidth-md) solid var(--color-border-subtle);
  padding-block-end: var(--space-8, 8px);
}
.sitemap-section ul {
  /* layout */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8, 8px) var(--space-24, 24px);
  /* spacing */
  padding-inline-start: var(--space-16, 16px);
}
.sitemap-section li {
  /* typography */
  color: var(--color-text-default);
  font-size: var(--font-size-18);
  font-weight: var(--fontweight-regular);
  line-height: 1.5;
  letter-spacing: var(--tracking-3);
  /* position */
  position: relative;
}
.sitemap-section li::before {
  /* layout */
  content: '';
  display: inline-block;
  width: 0.3em;
  height: 0.3em;
  margin-block-end: 0.3em;
  margin-inline-end: 0.5em;
  vertical-align: middle;
  /* style */
  border-radius: var(--rounded-6, 6px);
  background: var(--color-marker-default);
}
.sitemap-section a {
  /* typography */
  color: var(--color-text-default);
}
.sitemap-section a:hover,
.sitemap-section a:focus-within {
  text-decoration-thickness: 3px;
  text-underline-offset: 2px;
}
@media (width <= 768px) {
  .sitemap-section ul {
    /* layout */
    grid-template-columns: 1fr;
  }
}

.voice-info--right {
  text-align: right;
}
