@charset "UTF-8";
/*! kiso.css v1.2.3 | MIT License | https://github.com/tak-dcxi/kiso.css */
/* ======================================================
//  MARK: Universal
// ====================================================== */
*,
::before,
::after {
  /*
  * Includes `padding` and `border` in the element's specified dimensions.
  * It is highly recommended to set `box-sizing: border-box;` by default, as it makes styling much easier, especially when specifying `width: 100%;`.
  */
  box-sizing: border-box;
}

/* ======================================================
//  MARK: Document and Body Elements
// ====================================================== */
:where(:root) {
  /* In Safari, if `font-family` is not specified, a serif font is applied by default, so `sans-serif` is set as the default here. */
  font-family: sans-serif;
  /*
  * For accessibility, it is recommended to set the `line-height` to at least 1.5 times the text size within paragraphs.
  * @see https://waic.jp/translations/WCAG21/#visual-presentation
  */
  line-height: 1.5;
  /* Remove space when punctuation marks are adjacent, and also remove leading spaces in a line. */
  text-spacing-trim: trim-start;
  /* Improves readability by inserting a small space between Japanese and alphanumeric characters. */
  text-autospace: normal;
  /* Prevents misreading by applying strict line-breaking rules. */
  line-break: strict;
  /* Wraps English words mid-word. Specifying `anywhere` also prevents content from overflowing in layouts like `flex` or `grid`. */
  overflow-wrap: anywhere;
  /*
  * Mobile browsers have an algorithm that automatically adjusts font sizes to prevent text from becoming too small.
  * This controls the auto-adjustment feature to prevent unwanted resizing.
  */
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  /* Prevents layout shift caused by the appearance or disappearance of the scrollbar. */
  scrollbar-gutter: stable;
  /* Suppresses the tap highlight on iOS. */
  -webkit-tap-highlight-color: transparent;
}

:where(body) {
  /*
  * When creating a sticky footer, a minimum height is often required.
  * Setting the `min-block-size` to the dynamic viewport height ensures enough space for the footer.
  */
  min-block-size: 100dvb;
  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}

/* ======================================================
// MARK: Sections
// ------------------------------------------------------ */
:where(:is(h1, h2, h3, h4, h5, h6):lang(en)) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}

:where(h1) {
  /*
  * Adjusts user agent (UA) styles for `h1` elements within sectioning content.
  * This addresses DevTools warnings that appear when `h1` elements nested within sectioning content lack `font-size` and `margin` properties.
  * @see https://html.spec.whatwg.org/#sections-and-headings
  */
  margin-block: 0.67em;
  font-size: 2em;
}

:where(h2, h3, h4, h5, h6) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}

:where(search) {
  /*
  * The `<search>` element is supported from Safari 17.
  * This prevents it from being displayed as an inline element in unsupported environments.
  */
  display: block flow;
}

/* ======================================================
//  MARK: Grouping content
// ====================================================== */
:where(p, blockquote, figure, pre, address, ul, ol, dl, menu) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}

:where(blockquote, figure) {
  /* The `margin-inline` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline: unset;
}

:where(p:lang(en)) {
  /*
  * In English, a single word on the last line is called a "widow" or "orphan" and is considered something to avoid as it makes the text harder to read.
  * Therefore, when lang="en", this prevents the last line from ending with a single word.
  */
  text-wrap: pretty;
}

:where(address:lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}

:where(ul, ol, menu) {
  /* The `padding-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  padding-inline-start: unset;
  /*
  * In Safari, using `list-style: none` prevents screen readers from announcing lists.
  * `list-style-type: ""` is used to hide markers without affecting accessibility.
  * @see https://matuzo.at/blog/2023/removing-list-styles-without-affecting-semantics
  */
  list-style-type: "";
}

:where(dt) {
  /* It is common to display `<dt>` elements in bold, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}

:where(dd) {
  /* The `margin-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline-start: unset;
}

:where(pre) {
  /*
  * Since `text-spacing-trim` can affect spacing in `<pre>` elements even with its initial value, the final rendering may depend on the user's font settings.
  * To ensure consistent alignment, `space-all` is explicitly specified and inheritance is prevented.
  */
  text-spacing-trim: space-all;
  /* Set to `no-autospace` as it can cause misalignment with monospaced fonts. */
  text-autospace: no-autospace;
}

/* ======================================================
//  MARK: Text-level semantics
// ====================================================== */
:where(em:lang(ja)) {
  /* In Japanese, emphasis is commonly represented by bold text, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}

:where(:is(i, cite, em, dfn, var):lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}

:where(:is(u, s, del, ins)) {
  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}

:where(code, kbd, samp) {
  /*
  * Set a monospace font family referencing Tailwind.
  * @see https://tailwindcss.com/docs/font-family
  */
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* Font feature settings can have adverse effects on monospaced fonts, so their values are explicitly set to `initial` to prevent inheritance. */
  font-feature-settings: initial;
  font-variation-settings: initial;
  /* Resets the `font-size` specified in the UA stylesheet to allow inheritance. */
  font-size: unset;
  /*
  * Disables font ligatures for programming fonts (like Fira Code)
  * to prevent character combinations like `=>` from being rendered as a single symbol (e.g., `⇒`).
  */
  font-variant-ligatures: none;
}

:where(abbr[title]) {
  /*
  * The `<abbr>` element with the `title` attribute isn't helpful regarding accessibility because support is inconsistent, and it's only accessible to some users.
  * This rule shows a dotted underline on abbreviations in all browsers (there's a bug in Safari) and changes the cursor.
  * @see https://adrianroselli.com/2024/01/using-abbr-element-with-title-attribute.html
  */
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-inset: auto;
  cursor: help;
}

:where(time) {
  /* Set to `no-autospace` because date notations in typography do not include spaces. */
  text-autospace: no-autospace;
}

@media (forced-colors: active) {
  :where(mark) {
    /*
    * In forced-colors mode, the color of the mark element may not change, which can be problematic. Use system colors in forced-colors mode.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkWHCM
    */
    background-color: Highlight;
    color: HighlightText;
  }
}
@media print {
  :where(mark) {
    /*
    * Not all printers support color, and users might print in grayscale.
    * It's worth adding a non-disruptive style that scales with the text, as an alternative to relying only on background color.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkPrint
    */
    border-width: 1px;
    border-style: dotted;
  }
}
/* ======================================================
//  MARK: Links
// ====================================================== */
:where(a:-moz-any-link) {
  /* The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance. */
  color: unset;
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `text-decoration-line: revert;`.
  */
  text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}
:where(a:any-link) {
  /* The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance. */
  color: unset;
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `text-decoration-line: revert;`.
  */
  text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}

/* ======================================================
//  MARK: Embedded content
// ====================================================== */
:where(img, svg, picture, video, canvas, model, audio, iframe, embed, object) {
  /* Automatically adjust block size based on content. */
  block-size: auto;
  /* Prevents overflow by setting the maximum width to `100%`. */
  max-inline-size: 100%;
  /* Prevents extra space from appearing at the bottom of the element. */
  vertical-align: bottom;
}

:where(iframe) {
  /* The `border` specified in the UA stylesheet is often unnecessary, so it is reset. */
  border: unset;
}

/* ======================================================
//  MARK: Tabular data
// ====================================================== */
:where(table) {
  /* Collapse borders for a more refined table design. */
  border-collapse: collapse;
}

:where(caption, th) {
  /* The `text-align` specified in the UA stylesheet is often unnecessary, so it is reset. */
  text-align: unset;
}

:where(caption) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}

/* ======================================================
//  MARK: Forms
// ====================================================== */
:where(button, input, select, textarea),
::file-selector-button {
  /*
  * These elements are often styled with a border, so a `1px` border is applied by default for consistency.
  * This ensures readability even for unstyled elements.
  * When resetting, it's recommended to use `border-color: transparent` instead of `border: none` to account for forced color modes.
  */
  border-width: 1px;
  border-style: solid;
  /* These styles specified in the UA stylesheet are often unnecessary, so they are reset to allow for inheritance. */
  border-color: unset;
  border-radius: unset;
  color: unset;
  font: unset;
  letter-spacing: unset;
  text-align: unset;
}

:where(input:is([type=radio i], [type=checkbox i])) {
  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}

:where(input[type=file i]) {
  /* The `border` is often unnecessary, so it is reset here. */
  border: unset;
}

:where(input[type=search i]) {
  /* Remove the rounded corners of search inputs on macOS and normalize the background color. */
  -webkit-appearance: textfield;
}

@supports (-webkit-touch-callout: none) {
  :where(input[type=search i]) {
    /* normalize the background color on iOS. */
    background-color: Canvas;
  }
}
:where(input:is([type=tel i],
[type=url i],
[type=email i],
[type=number i]):not(:-moz-placeholder)) {
  /*
  * Certain input types need to maintain left alignment even in right-to-left (RTL) languages.
  * However, this only applies when the value is not empty, as the placeholder should be right-aligned.
  * @see https://rtlstyling.com/posts/rtl-styling#form-inputs
  */
  direction: ltr;
}
:where(input:is([type=tel i],
[type=url i],
[type=email i],
[type=number i]):not(:placeholder-shown)) {
  /*
  * Certain input types need to maintain left alignment even in right-to-left (RTL) languages.
  * However, this only applies when the value is not empty, as the placeholder should be right-aligned.
  * @see https://rtlstyling.com/posts/rtl-styling#form-inputs
  */
  direction: ltr;
}

:where(textarea) {
  /* The `margin-block` specified in Firefox's UA stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
  /* Allows vertical resizing for `<textarea>` elements. */
  resize: block;
}

:where(input:not([type=button i], [type=submit i], [type=reset i]),
textarea,
[contenteditable]) {
  /* Set to `no-autospace` because `text-autospace` can insert spaces during input, potentially causing erratic behavior. */
  text-autospace: no-autospace;
}

:where(button,
input:is([type=button i], [type=submit i], [type=reset i])),
::file-selector-button {
  /* The `background-color` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  background-color: unset;
}

:where(button,
input:is([type=button i], [type=submit i], [type=reset i]),
[role=tab i],
[role=button i],
[role=option i]),
::file-selector-button {
  /*
  * On iOS, double-tapping a button can cause zooming, which harms usability.
  * `touch-action: manipulation` is specified to disable zooming on double-tap.
  * Third-party plugins such as Swiper sometimes use div elements with these roles as buttons, since double-tapping a div can still trigger zooming, it's advisable to specify this property.
  */
  touch-action: manipulation;
}

:where(button:enabled,
label[for],
select:enabled,
input:is([type=button i],
[type=submit i],
[type=reset i],
[type=radio i],
[type=checkbox i]):enabled,
[role=tab i],
[role=button i],
[role=option i]),
:where(:enabled)::file-selector-button {
  /* Indicate clickable elements with a pointer cursor. */
  cursor: pointer;
}

:where(fieldset) {
  /*
  * Prevent fieldset from causing overflow.
  * Reset the default `min-inline-size: min-content` to prevent children from stretching fieldset.
  * @see https://github.com/twbs/bootstrap/issues/12359
  */
  min-inline-size: 0;
  /* The following default styles are often unnecessary, so they are reset. */
  margin-inline: unset;
  padding: unset;
  border: unset;
}

:where(legend) {
  /* The default `padding-inline` is often unnecessary, so it is reset. */
  padding-inline: unset;
}

:where(progress) {
  /* Resets the vertical alignment of the `<progress>` element to its initial value. */
  vertical-align: unset;
}

::-moz-placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}

::placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}

/* ======================================================
//  MARK: Interactive elements
// ====================================================== */
:where(summary) {
  /* The default triangle marker is often unnecessary, so it is disabled. */
  list-style-type: "";
  /* Changing the cursor to a pointer clarifies the clickability of the element. */
  cursor: pointer;
}

:where(summary)::-webkit-details-marker {
  /* In Safari versions earlier than 18.4 (released in April 2025), a triangle icon is displayed using the -webkit-details-marker CSS pseudo-element, so it should be removed. */
  display: none;
}

:where(dialog, [popover]) {
  /*
  * When these fixed-position elements are scrolled, preventing scroll chaining on the underlying page and bounce effects on mobile improves usability.
  * Disabling block-direction scroll chaining is recommended.
  */
  overscroll-behavior-block: contain;
  /* The following default styles are often unnecessary, so they are reset. */
  padding: unset;
  border: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  /*
  * These elements can be easily displayed by explicitly setting their `display` property.
  * To prevent them from appearing when not in an open state, they are forcibly hidden.
  */
  display: none !important;
}

:where(dialog) {
  /*
  * The max width and height of a `<dialog>` element are typically determined by the design.
  * These UA stylesheet properties are reset as they can be obstructive, especially when trying to make the dialog full-screen.
  */
  max-inline-size: unset;
  max-block-size: unset;
}

:where(dialog)::backdrop {
  /* Normalize the background color of the `::backdrop` element. */
  background-color: oklch(0% 0 0deg / 0.3);
}

:where([popover]) {
  /*
  * While the UA stylesheet's `margin` for `<dialog>` elements is useful for centering with `inset: 0`,
  * but `margin` for `popover` elements is often obstructive as they frequently use Anchor Positioning.
  */
  margin: unset;
}

/* ======================================================
//  MARK: Focus Styles
// ====================================================== */
:where(:focus-visible) {
  /* Add space between the content and the focus outline. */
  outline-offset: 3px;
}

[tabindex="-1"]:focus {
  /* Prevent programmatically focused elements from displaying an outline unless they are naturally focusable. */
  outline: none !important;
}

/* ======================================================
//  MARK: Misc
// ====================================================== */
:where(:disabled, [aria-disabled=true i]) {
  /* Display the default cursor on disabled elements to reflect their non-interactive state. */
  cursor: default;
}

[hidden]:not([hidden=until-found i]) {
  /* Ensure that elements intended to be hidden are not displayed, improving clarity and layout control. */
  display: none !important;
}

/* ======================================================
//  ブレークポイント定義
// ====================================================== */
/* ======================================================
//  色設定
// ====================================================== */
/* ======================================================
//  フォント設定
// ====================================================== */
/* ======================================================
//  z-index管理
// ====================================================== */
/* ======================================================
//  ボディ
// ====================================================== */
body {
  font-family: "Lato", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  color: #795c1d;
  background-color: #faf8f2;
}

/* ======================================================
//  コンテナ幅
// ====================================================== */
.container {
  max-width: 1920px;
  margin: 0 auto;
  padding-right: clamp(1rem, -0.274rem + 5.44vw, 6.25rem);
  padding-left: clamp(1rem, -0.274rem + 5.44vw, 6.25rem);
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: clamp(0.625rem, 0.473rem + 0.65vw, 1.25rem);
       column-gap: clamp(0.625rem, 0.473rem + 0.65vw, 1.25rem);
  align-items: stretch;
}

/* ======================================================
//  リンク
// ====================================================== */
a:not([class]) {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  padding-bottom: 3px;
  background-image: linear-gradient(#795c1d, #795c1d);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 1px;
  color: #795c1d;
  transition: background-size 0.3s;
}
a:not([class]):hover {
  background-position: bottom left;
  background-size: 100% 1px;
}

a[target=_blank]:not([class]) {
  position: relative;
}
a[target=_blank]:not([class])::after {
  content: "";
  width: 1.5em;
  height: 1.5em;
  position: absolute;
  top: calc(50% - 1px);
  right: -1.8em;
  transform: translateY(-50%);
  background-image: url("./assets/images/icon/open-new.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ======================================================
//  ヘッダー
// ====================================================== */
.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
}
.site-header__inner {
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-composite: source-in, xor;
          mask-composite: intersect;
}

/* ======================================================
//  ロゴ
// ====================================================== */
.site-branding {
  display: flex;
  justify-content: center;
}

.site-title {
  margin: 0;
  width: 64px;
  margin: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
.site-title__link {
  color: #faf8f2;
}

body:not(.home) #logo path {
  fill: #795c1d;
}
body:not(.home) .site-title__link {
  color: #795c1d;
}

/* ======================================================
//  ナビゲーション
// ====================================================== */
.menu {
  width: 100%;
  padding-bottom: 0.5em;
  display: flex;
  justify-content: space-between;
}

.h-menu-item {
  position: relative;
  z-index: 1;
  font-size: clamp(1rem, 0.588rem + 1.18vw, 2rem);
  cursor: pointer;
}
.h-menu-item__ellipse {
  width: 100%;
  height: 2em;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0;
}
.h-menu-item__link {
  text-transform: uppercase;
  font-size: inherit;
  color: #faf8f2;
}

body:not(.home) .h-menu-item__link {
  color: #795c1d;
}

body.home .h-menu-item__ellipse {
  border-color: #faf8f2;
}

/* ======================================================
//  フッター
// ====================================================== */
.site-footer__inner {
  padding-top: 10rem;
  padding-bottom: 4rem;
  display: flex;
}
@media screen and (max-width: 795px) {
  .site-footer__inner {
    flex-direction: column;
    row-gap: 1.5rem;
    align-items: center;
  }
}

/* ======================================================
//  メッセージ
// ====================================================== */
.f-sec-message {
  flex: 1;
  font-size: clamp(2rem, 0.667rem + 2.78vw, 4rem);
}

/* ======================================================
//  ナビゲーション
// ====================================================== */
.f-sec-nav {
  display: flex;
  align-items: flex-end;
}

.f-menu {
  display: flex;
  -moz-column-gap: 1.5em;
       column-gap: 1.5em;
}

/* ======================================================
//  サイト情報
// ====================================================== */
.site-info {
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 1px solid #b0965d;
  text-align: center;
}

/* ======================================================
//  共通
// ====================================================== */
.site-main {
  padding-top: 135px;
}

.entry-title {
  text-align: center;
}

/* ======================================================
//  メインビジュアル
// ====================================================== */
.mv {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.mv__inner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 795px) {
  .mv__inner {
    align-items: center;
  }
}

.mv-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 0;
  opacity: 0;
}

.mv-text-wrap {
  grid-template-rows: auto;
  row-gap: clamp(0.625rem, 0.473rem + 0.65vw, 1.25rem);
  width: calc(100% - clamp(1rem, -0.274rem + 5.44vw, 6.25rem) * 2);
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 64%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 795px) {
  .mv-text-wrap {
    top: 50%;
  }
}
@media screen and (max-width: 560px) {
  .mv-text-wrap {
    display: flex;
    flex-direction: column;
  }
}

.mv-text-row {
  display: flex;
  -moz-column-gap: 1.5vw;
       column-gap: 1.5vw;
}
.mv-text-row:first-of-type {
  grid-column: 1/12;
  grid-row: 3/4;
}
@media screen and (max-width: 560px) {
  .mv-text-row:first-of-type {
    width: 80vw;
  }
}
.mv-text-row:nth-of-type(2) {
  grid-column: 3/13;
  grid-row: 4/5;
  margin-top: 1.5vw;
}
@media screen and (max-width: 560px) {
  .mv-text-row:nth-of-type(2) {
    width: 90vw;
  }
}
.mv-text-row:nth-of-type(3) {
  grid-column: 2/8;
  grid-row: 5/6;
}
@media screen and (max-width: 560px) {
  .mv-text-row:nth-of-type(3) {
    width: 50vw;
  }
}

.mv-text > img {
  height: -moz-fit-content;
  height: fit-content;
  width: auto;
}
.mv-text--02 {
  margin-right: 7rem;
}
@media screen and (max-width: 560px) {
  .mv-text--02 {
    margin-right: 0;
  }
}

.mv-text-sub {
  grid-column: 1/3;
  grid-row: 4/5;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 2;
  opacity: 1;
  letter-spacing: 0.05em;
  font-size: clamp(0.75rem, 0.583rem + 0.35vw, 1rem);
  color: #faf8f2;
}

.mv-deco-ball {
  position: absolute;
  top: 64%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
}
@media screen and (max-width: 795px) {
  .mv-deco-ball {
    width: 80vw;
    top: 50%;
  }
}

/* ======================================================
//  見出し
// ====================================================== */
.t-title-wrapper {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 795px) {
  .t-title-wrapper {
    text-align: center;
  }
}

.t-title-en {
  display: flex;
  flex-direction: column;
  row-gap: clamp(1rem, 0.667rem + 0.69vw, 1.5rem);
}
.t-title-en__label-sub {
  line-height: 1;
  font-family: "Libre Baskerville", "Hiragino Mincho ProN", serif;
  font-style: italic;
  font-size: clamp(2rem, 0.667rem + 2.78vw, 4rem);
}
.t-title-en__label {
  line-height: 1;
  text-transform: uppercase;
  font-size: clamp(4rem, 1.333rem + 5.56vw, 8rem);
}

.t-title-ja {
  line-height: 1;
  font-weight: normal;
  font-family: "Libre Baskerville", "Hiragino Mincho ProN", serif;
  font-size: clamp(1rem, 0.833rem + 0.35vw, 1.25rem);
}
@media screen and (max-width: 795px) {
  .t-title-ja {
    text-align: center;
  }
}

/* ======================================================
//  概要
// ====================================================== */
.t-description {
  position: relative;
  overflow: hidden;
}
.t-description__inner {
  padding-top: clamp(10rem, 7.573rem + 10.36vw, 20rem);
  padding-bottom: clamp(10rem, 7.573rem + 10.36vw, 20rem);
}

.t-desc-card {
  width: clamp(3rem, 0.667rem + 6.94vw, 9rem);
  position: absolute;
  perspective: 600px;
}

.t-desc-card--01 {
  top: 16%;
  left: 16%;
  transform: translateY(-50%);
}
.t-desc-card--01 .t-desc-card__inner {
  transform: rotate3d(1, 1, 1, 40deg);
}

.t-desc-card--02 {
  top: 48%;
  left: 0;
  transform: translate(-40%, -50%);
}
.t-desc-card--02 .t-desc-card__inner {
  transform: rotate3d(1, 0, 8, 24deg);
}

.t-desc-card--03 {
  top: 80%;
  left: 8%;
  transform: translateY(-50%);
}
.t-desc-card--03 .t-desc-card__inner {
  transform: rotate3d(8, 0, 8, -48deg);
}

.t-desc-card--04 {
  top: 20%;
  right: 16%;
  transform: translateY(-50%);
}
.t-desc-card--04 .t-desc-card__inner {
  transform: rotate3d(0, 1, 1, 304deg);
}

.t-desc-card--05 {
  top: 32%;
  right: 0;
  transform: translate(8%, -50%);
}
.t-desc-card--05 .t-desc-card__inner {
  transform: rotate3d(8, -4, 4, 56deg);
}

.t-desc-card--06 {
  top: 80%;
  right: 8%;
  transform: translateY(-50%);
}
.t-desc-card--06 .t-desc-card__inner {
  transform: rotate3d(8, -16, 8, 40deg);
}

.t-desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 2rem;
}
@media screen and (max-width: 560px) {
  .t-desc {
    max-width: 280px;
    margin: 0 auto;
  }
}
.t-desc__title {
  font-size: clamp(2rem, 1.515rem + 2.07vw, 4rem);
}
.t-desc__body {
  font-size: clamp(0.875rem, 0.784rem + 0.39vw, 1.25rem);
}

/* ======================================================
//  言語
// ====================================================== */
.t-sec-lang {
  padding-top: clamp(2.5rem, -7.5rem + 20.83vw, 17.5rem);
  padding-bottom: clamp(2.5rem, -7.5rem + 20.83vw, 17.5rem);
  display: flex;
  flex-direction: column;
  row-gap: clamp(2.5rem, 0.833rem + 3.47vw, 5rem);
  overflow: hidden;
  background-color: #e9e5dd;
}

.t-lang._reverse .t-lang__head {
  grid-column: 9/12;
}
.t-lang._reverse .t-lang__body {
  grid-column: 2/8;
}
.t-lang__head {
  grid-column: 2/5;
}
.t-lang__body {
  grid-column: 6/12;
}

.t-lang-link {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 1em;
  font-size: clamp(1rem, 0.333rem + 1.39vw, 2rem);
}
.t-lang-link:hover .t-lang-title::before {
  width: 5em;
}
.t-lang-link:hover .t-lang-title::after {
  left: calc(100% + 4em);
}

.t-lang-title {
  position: relative;
  transform: translateX(-100%);
  font-family: "Libre Baskerville", "Hiragino Mincho ProN", serif;
  font-size: inherit;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 560px) {
  .t-lang-title {
    transform: translateX(0);
  }
}
.t-lang-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 1em);
  width: 3em;
  height: 1px;
  background-color: #795c1d;
  transition: width 0.3s ease;
}
@media screen and (max-width: 560px) {
  .t-lang-title::before {
    top: auto;
    bottom: -48%;
    left: 0;
  }
}
.t-lang-title::after {
  content: "";
  position: absolute;
  top: 41%;
  left: calc(100% + 2em);
  width: 1em;
  height: 1px;
  background-color: #795c1d;
  transform: translateX(100%) rotate(15deg);
  transition: left 0.3s ease;
}
@media screen and (max-width: 560px) {
  .t-lang-title::after {
    top: auto;
    bottom: -40%;
    left: auto;
    right: calc(100% - 2em);
  }
}

.t-lang-gallery {
  grid-template-rows: repeat(3, 1fr);
  row-gap: clamp(0.625rem, 0.208rem + 0.87vw, 1.25rem);
}
.t-lang-gallery__item:nth-child(1) {
  grid-column: 1/5;
  grid-row: 1/2;
}
.t-lang-gallery__item:nth-child(2) {
  grid-column: 5/9;
  grid-row: 1/2;
}
.t-lang-gallery__item:nth-child(3) {
  grid-column: 9/13;
  grid-row: 1/2;
}
.t-lang-gallery__item:nth-child(4) {
  grid-column: 1/5;
  grid-row: 2/3;
}
.t-lang-gallery__item:nth-child(5) {
  grid-column: 5/9;
  grid-row: 2/3;
}
.t-lang-gallery__item:nth-child(6) {
  grid-column: 1/5;
  grid-row: 3/4;
}
.t-lang-gallery__item > img {
  width: 100%;
}

/* ======================================================
//  検索の概要
// ====================================================== */
.t-serach__inner {
  grid-template-rows: auto;
  row-gap: clamp(3rem, 2.333rem + 1.39vw, 4rem);
  padding-top: clamp(2.5rem, -7.5rem + 20.83vw, 17.5rem);
  padding-bottom: clamp(2.5rem, -7.5rem + 20.83vw, 17.5rem);
  position: relative;
}
.t-serach__head {
  grid-column: 3/9;
  grid-row: 1/2;
}
@media screen and (max-width: 560px) {
  .t-serach__head {
    grid-column: 2/9;
  }
}
.t-serach__head > img {
  width: 100%;
}
.t-serach__body {
  grid-column: 6/13;
  grid-row: 2/3;
}
@media screen and (max-width: 560px) {
  .t-serach__body {
    grid-column: 2/13;
  }
}

.t-serach-image {
  position: absolute;
}
.t-serach-image > img {
  width: 100%;
}
.t-serach-image--01 {
  width: 28vw;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 560px) {
  .t-serach-image--01 {
    transform: translateY(80%);
  }
}
.t-serach-image--02 {
  width: 13vw;
  top: 16%;
  right: 0;
}
.t-serach-image--03 {
  width: 18vw;
  bottom: 0;
  right: 8%;
  transform: translateY(64%);
}

/* ======================================================
//  トーンの彩度領域
// ====================================================== */
.t-sec-saturation {
  padding-top: clamp(2.5rem, -7.5rem + 20.83vw, 17.5rem);
  padding-bottom: clamp(2.5rem, -7.5rem + 20.83vw, 17.5rem);
}

@media screen and (max-width: 795px) {
  .t-saturation {
    display: flex;
    flex-direction: column;
  }
}
.t-saturation__head {
  grid-column: 1/7;
}
@media screen and (max-width: 795px) {
  .t-saturation__head {
    display: none;
  }
}
.t-saturation__head-inner {
  padding-top: calc(135px + clamp(2.5rem, 0.833rem + 2.47vw, 5rem));
  padding-right: clamp(2.5rem, 0.833rem + 3.47vw, 5rem);
  padding-left: clamp(2.5rem, 0.833rem + 3.47vw, 5rem);
  padding-bottom: clamp(2.5rem, 0.833rem + 3.47vw, 5rem);
  display: flex;
  flex-direction: column;
  row-gap: clamp(1.5rem, -0.167rem + 3.47vw, 4rem);
  position: sticky;
  top: 0;
  right: 0;
  overflow: hidden;
}
.t-saturation__body {
  grid-column: 7/13;
}

.transform-title-wrapper {
  display: flex;
  align-items: flex-end;
  -moz-column-gap: clamp(2rem, 1.333rem + 1.39vw, 3rem);
       column-gap: clamp(2rem, 1.333rem + 1.39vw, 3rem);
}

.transform-title-icon {
  display: none;
  flex: 1;
  margin-bottom: 1rem;
}
.transform-title-icon__inner {
  width: clamp(1rem, 1.333rem + 5.56vw, 4rem);
}

.ts-title-ja {
  display: flex;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  align-items: center;
  font-weight: normal;
  font-family: "Libre Baskerville", "Hiragino Mincho ProN", serif;
}
@media screen and (max-width: 795px) {
  .ts-title-ja {
    justify-content: center;
  }
}
.ts-title-ja__label {
  line-height: 1;
  font-size: clamp(1rem, 0.833rem + 0.35vw, 1.25rem);
}
.ts-title-ja__ref {
  font-size: clamp(1.5rem, 0.833rem + 1.39vw, 2.5rem);
}

.ts-title {
  display: none;
}
@media screen and (max-width: 795px) {
  .ts-title {
    display: block;
    text-align: center;
  }
}

.ts-body-item {
  width: 100%;
  padding-top: calc(135px + clamp(2.5rem, 0.833rem + 2.47vw, 5rem));
  padding-bottom: clamp(5rem, 0.833rem + 3.47vw, 10rem);
  display: flex;
  flex-direction: column;
  row-gap: clamp(1rem, 0.667rem + 0.69vw, 1.5rem);
}
@media screen and (max-width: 795px) {
  .ts-body-item {
    height: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media screen and (max-width: 560px) {
  .ts-body-item {
    padding-left: 0;
    padding-right: 0;
  }
}
.ts-body-item__inner {
  display: flex;
  flex-direction: column;
  row-gap: clamp(2rem, 1.333rem + 1.39vw, 3rem);
}

.ts-links {
  padding-left: clamp(1rem, 1.333rem + 1.39vw, 1.5rem);
  display: flex;
  flex-direction: column;
  row-gap: clamp(3.5rem, 3.379rem + 0.52vw, 4rem);
}
@media screen and (max-width: 795px) {
  .ts-links {
    align-items: center;
    padding-left: 0;
  }
}

.tone-link {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  position: relative;
  line-height: 1;
  font-weight: bold;
  font-size: clamp(1.5rem, 0.5rem + 2.08vw, 3rem);
}
.tone-link::before {
  content: "";
  position: absolute;
  bottom: -0.5em;
  left: 0;
  width: 50%;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease;
}
@media screen and (max-width: 795px) {
  .tone-link::before {
    width: 100%;
  }
}
.tone-link::after {
  content: "";
  position: absolute;
  bottom: calc(-0.4em + 1px);
  left: 50%;
  width: 1em;
  height: 1px;
  background-color: currentColor;
  transform: translateX(-100%) rotate(15deg);
  transition: left 0.3s ease;
}
@media screen and (max-width: 795px) {
  .tone-link::after {
    left: 100%;
  }
}
.tone-link__ja {
  font-weight: normal;
  font-family: "Libre Baskerville", "Hiragino Mincho ProN", serif;
  font-size: clamp(0.875rem, 0.625rem + 0.52vw, 1.25rem);
}
.tone-link:hover::before {
  width: 100%;
}
.tone-link:hover::after {
  left: 100%;
}

/* ======================================================
//  トーンの色相番号
// ====================================================== */
@media screen and (max-width: 795px) {
  .t-sec-number__inner {
    display: flex;
    flex-direction: column;
  }
}
.t-sec-number__head {
  grid-column: 1/7;
}
.t-sec-number__head-inner {
  padding: clamp(2rem, 0.833rem + 3.47vw, 5rem);
}
@media screen and (max-width: 795px) {
  .t-sec-number__head-inner {
    padding-bottom: 0;
  }
}
.t-sec-number__body {
  grid-column: 7/13;
}
.t-sec-number__body-inner {
  padding-top: clamp(2.5rem, 0.833rem + 3.47vw, 5rem);
  padding-bottom: clamp(2.5rem, 0.833rem + 3.47vw, 5rem);
  display: flex;
  flex-direction: column;
  row-gap: clamp(2rem, 1.333rem + 1.39vw, 3rem);
}

.tn-links {
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(0.625rem, 0.473rem + 0.65vw, 1.25rem);
}
@media screen and (max-width: 795px) {
  .tn-links {
    grid-template-columns: repeat(4, 1fr);
  }
}
.tn-links__item {
  aspect-ratio: 125/90;
}

.number-link {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #795c1d;
  font-family: "Libre Baskerville", "Hiragino Mincho ProN", serif;
  font-style: italic;
  font-size: clamp(1rem, 0.333rem + 1.39vw, 2rem);
  transition: all 0.3s ease;
}
.number-link:hover {
  background-color: #e9e5dd;
}

/* ======================================================
//  アーカイブ
// ====================================================== */
.ca-page-titile {
  letter-spacing: 0.01em;
  text-align: center;
  text-transform: capitalize;
  font-family: "Libre Baskerville", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.5rem, 0.5rem + 2.08vw, 3rem);
  font-weight: 400;
}
.ca-page-titile__small {
  text-transform: none;
  font-size: 0.6em;
}

.ca-list-header {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  border: 1px solid #b0965d;
  font-family: "Libre Baskerville", "Hiragino Mincho ProN", serif;
  font-size: 0.88rem;
}
@media screen and (max-width: 795px) {
  .ca-list-header {
    display: none;
  }
}
.ca-list-header__name {
  width: 200px;
  padding: 1em;
  border-right: 1px solid #b0965d;
  text-align: center;
}
.ca-list-header__tip {
  width: 81px;
  padding: 1em;
  border-right: 1px solid #b0965d;
  text-align: center;
}
.ca-list-header__origin {
  flex: 1;
  padding: 1em;
  text-align: center;
}

.ca-list {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  border-right: 1px solid #b0965d;
  border-left: 1px solid #b0965d;
}
.ca-list__item {
  border-bottom: 1px solid #b0965d;
}
@media screen and (max-width: 795px) {
  .ca-list__item {
    border-top: 1px solid #b0965d;
  }
}
.ca-list__item:not(:first-child) {
  border-top: 1px solid #b0965d;
}
.ca-list__item:not(:first-child) .ca-item__tip::before {
  content: "";
  width: 1px;
  height: 2rem;
  position: absolute;
  top: calc(-2rem - 1px);
  left: -1px;
  border-left: 1px solid #b0965d;
}
.ca-list__item:not(:first-child) .ca-item__tip::after {
  content: "";
  width: 1px;
  height: 2rem;
  position: absolute;
  top: calc(-2rem - 1px);
  right: -1px;
  border-right: 1px solid #b0965d;
}
@media screen and (max-width: 795px) {
  .ca-list__item:not(:first-child) .ca-item__tip::after {
    content: none;
  }
}

.ca-item {
  display: flex;
  transition: background-color 0.3s ease;
}
.ca-item:hover {
  background-color: #e9e5dd;
}
@media screen and (max-width: 795px) {
  .ca-item {
    flex-wrap: wrap;
  }
}
.ca-item__header {
  width: 200px;
  padding: 0.5em 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 0.25em;
  border-right: 1px solid #b0965d;
  font-family: "Libre Baskerville", "Hiragino Mincho ProN", serif;
}
.ca-item__name {
  letter-spacing: 0.01em;
  text-transform: capitalize;
  font-style: italic;
  font-size: 1rem;
}
.ca-item__yomi {
  font-size: 0.88rem;
}
.ca-item__tip {
  position: relative;
  border-right: 1px solid #b0965d;
}
@media screen and (max-width: 795px) {
  .ca-item__tip {
    flex: 1;
    border: none;
  }
}
.ca-item__body {
  flex: 1;
  padding: 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 0.88rem;
}
@media screen and (max-width: 795px) {
  .ca-item__body {
    width: 100%;
    flex: none;
    border-top: 1px solid #b0965d;
  }
}

.ca-tip {
  width: 80px;
  height: 77px;
}
@media screen and (max-width: 795px) {
  .ca-tip {
    width: 100%;
  }
}

/* ======================================================
//  記事ページ
// ====================================================== */
.entry-content {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

.cd-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2rem;
}
.cd-header__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cd-header__name {
  margin: 0;
  text-transform: capitalize;
  letter-spacing: 0.01em;
  font-family: "Libre Baskerville", "Hiragino Mincho ProN", serif;
  font-style: italic;
  font-size: clamp(1.5rem, 0.5rem + 2.08vw, 3rem);
}
.cd-header__yomi {
  font-family: "Libre Baskerville", "Hiragino Mincho ProN", serif;
}
.cd-header__tip {
  width: 100%;
  aspect-ratio: 2/0.5;
}

.cd-meta {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
.cd-meta__notation {
  display: flex;
  flex-direction: column;
  row-gap: 0.2em;
}
.cd-meta__figure {
  flex: 1;
  display: flex;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}

.cd-meta-systematic-name {
  font-size: 0.88rem;
}

.cd-meta-tone {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.cd-meta-tone__item {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #795c1d;
  letter-spacing: 0.05em;
  font-family: "Libre Baskerville", "Hiragino Mincho ProN", serif;
  font-size: 1rem;
}

.cd-figures {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

.cd-figure {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}

/* ======================================================
//  ページネーション
// ====================================================== */
.s-sec-nav {
  max-width: 560px;
  margin: 4rem auto 0;
}

.nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1em;
}

.nav-link {
  position: relative;
  font-family: "Libre Baskerville", "Hiragino Mincho ProN", serif;
}
.nav-link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 4em;
  height: 1.5em;
  transform: translate(100%, -50%);
  background-color: transparent;
  transition: width 0.3s ease;
}
.nav-link__title {
  width: 168px;
  display: block;
  position: relative;
  text-align: center;
}
.nav-link__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 1em);
  width: 3em;
  height: 1px;
  background-color: #795c1d;
  transition: width 0.3s ease;
}
.nav-link__title::after {
  content: "";
  position: absolute;
  top: 41%;
  left: calc(100% + 2em);
  width: 1em;
  height: 1px;
  background-color: #795c1d;
  transform: translateX(100%) rotate(15deg);
  transition: left 0.3s ease, right 0.3s ease;
}
.nav-link:hover .nav-link__title::before {
  width: 5em;
}
.nav-link:hover .nav-link__title::after {
  left: calc(100% + 4em);
}

.nav-link--rev::before {
  left: 0;
  right: auto;
  transform: translate(-100%, -50%);
}
.nav-link--rev:hover .nav-link__title::after {
  left: auto;
  right: calc(100% + 4em);
}
.nav-link--rev .nav-link__title::before {
  left: auto;
  right: calc(100% + 1em);
}
.nav-link--rev .nav-link__title::after {
  left: auto;
  right: calc(100% + 2em);
  transform: translateX(-100%) rotate(-15deg);
}/*# sourceMappingURL=style.css.map */