@layer global, reset, wordpress, base, layout, vendor, components, site, page, javascript, utility;

@layer global{

:root {
  --color-back: #fff;
  --color-text: #333333;
  --color-primary: #55210b;
  --color-secondary: #86322a;
  --color-error: #c1272d;
  --color-link: #c1272d;

  --color-tonewood: #86322a;
  --color-lyre: #f08f90;
  --color-mother: #2e3192;

  --color-craft-acoustic: #9e6a10;
  --color-craft-classic: #d26d1e;
  --color-craft-electric: #9e322a;
  --color-repair: #86322a;

  --color-form: var(--color-primary);
  --fontFamily-default:
    "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",
    sans-serif;
  --fontFamily-noto:
    "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",
    sans-serif;

  --height-header: 104;
  --scroll-padding-top: var(--height-header);
  --line-clamp: 2;

  --width-inner-lg: 1280;
  --width-inner: 1080;
  --width-inner-sm: 800;

  --zIndex-header: 40;
  --zIndex-spmenu: 41;
  --zIndex-toggle: 42;
  --zIndex-splash: 50;

  --leading-trim: calc((1em - 1lh) / 2);
  --size-check: 24px;

  --gutter: 20px;
  --gutter-inner: 20px;

  --ease-in-sine: cubic-bezier(0.47, 0, 0.745, 0.715);
  --ease-out-sine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --ease-in-out-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);

  --ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-in-out-quart: cubic-bezier(0.77, 0, 0.175, 1);

  --ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out-quint: cubic-bezier(0.86, 0, 0.07, 1);
  --ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out-expo: cubic-bezier(1, 0, 0, 1);

  --ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --ease-out-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
  --ease-in-out-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --ease-in-back: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --ease-out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-in-out-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@media screen and (max-width: 768px) {
  :root {
    --height-header: 60;
  }
}

/* @font-face {
  font-family: "xxxxxxxx";
  src: url(../fonts/xxxxxxxx.otf) format("opentype");
  font-weight: 400;
  font-style: normal;
} */
}

@layer reset{

/***
    The new CSS reset - version 1.11.3 (last updated 25.08.2024)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/

/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}

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

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

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

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

/* Firefox: solve issue where nested ordered lists continue numbering from parent (https://bugzilla.mozilla.org/show_bug.cgi?id=1881517) */
ol {
    counter-reset: revert;
}

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

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

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

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

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

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

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

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

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

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

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

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

@layer base{

/* base style */

*,
*::before,
*::after {
  min-width: 0;
  min-height: 0;
}

html {
  scroll-padding-top: calc(var(--scroll-padding-top) * 1px);
  scrollbar-gutter: stable;
}

body {
  background: var(--color-back);
  color: var(--color-text);
  font-family: var(--fontFamily-default);
  overflow-wrap: break-word;
  /* word-break: break-all; */
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

a:where(:not(.wp-element-button)) {
  text-decoration: none;
}

/* セマンティック要素の復元 (all: unset による消失を補完) */
strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

small {
  font-size: 80%;
}

sub {
  vertical-align: sub;
  font-size: 75%;
}

sup {
  vertical-align: super;
  font-size: 75%;
}

mark {
  background-color: #ff0;
  color: #000;
}

del,
s {
  text-decoration: line-through;
}

ins,
u {
  text-decoration: underline;
}

abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
}

hr {
  border: none;
  border-top: 1px solid #ccc;
}

code,
pre {
  font-family: var(--fontFamily-default);
  white-space: pre-wrap;
}

img,
picture > img,
picture > source,
figure {
  max-width: 100%;
}

img {
  height: auto;
  image-rendering: auto;
  display: block;
}

picture {
  display: contents;
}

iframe {
  border: 0;
  max-width: 100%;
}
:where(figure) {
  margin: 0;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
  touch-action: manipulation;
  font-size: 1rem;
}

:where(
  :any-link,
  button,
  [type="button"],
  [type="reset"],
  [type="submit"],
  label[for],
  select,
  summary,
  [role="tab"],
  [role="button"]
) {
  cursor: pointer;
}

:focus:not(:focus-visible) {
  outline: none;
}

:where(a, button, summary, [role="button"], [role="tab"]):focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ================================================================
   フォーム要素
   ================================================================ */

/* label: iOS対応のためにポインター指定 */
label {
  cursor: pointer;
}

/* プレースホルダー色調整 */
::placeholder {
  color: #ccc;
}

optgroup {
  font-size: 1rem;
}

/* テキスト系入力・テキストエリア・セレクトボックス共通 */
input:not(
  [type="radio"],
  [type="checkbox"],
  [type="range"],
  [type="file"],
  [type="hidden"],
  [type="button"],
  [type="reset"],
  [type="submit"],
  [type="image"],
  [type="color"]
),
textarea,
select {
  border: 1px solid #333333;
  background-color: #fff;
  font-size: 1rem;
  min-width: 0;
  padding: 1.063em 0.75em;
  width: 100%;
  accent-color: var(--color-form);
}

/* フォーカス */
input:not(
    [type="radio"],
    [type="checkbox"],
    [type="range"],
    [type="file"],
    [type="hidden"],
    [type="button"],
    [type="reset"],
    [type="submit"],
    [type="image"],
    [type="color"]
  ):focus,
textarea:focus,
select:focus {
  border-color: var(--color-primary);
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}

@media screen and (max-width: 768px) {
  input:not(
    [type="radio"],
    [type="checkbox"],
    [type="range"],
    [type="file"],
    [type="hidden"],
    [type="button"],
    [type="reset"],
    [type="submit"],
    [type="image"],
    [type="color"]
  ) {
    font-size: 16px;
    height: 48px;
    padding: 0 12px;
  }

  select {
    font-size: 16px;
    padding: 14px 12px;
  }

  textarea {
    font-size: 16px;
    padding: 12px;
  }
}

textarea {
  resize: vertical;
  height: 180px;
  overflow-y: auto;
}

/* スピンボタン非表示 (Chrome / Safari) */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button,
input[type="month"]::-webkit-outer-spin-button,
input[type="month"]::-webkit-inner-spin-button,
input[type="datetime-local"]::-webkit-outer-spin-button,
input[type="datetime-local"]::-webkit-inner-spin-button,
input[type="week"]::-webkit-outer-spin-button,
input[type="week"]::-webkit-inner-spin-button,
input[type="time"]::-webkit-outer-spin-button,
input[type="time"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-outer-spin-button,
input[type="date"]::-webkit-inner-spin-button {
  appearance: none;
  display: none;
  margin: 0;
}

/* スピンボタン非表示 (Firefox) */
input[type="number"] {
  appearance: textfield;
}

/* 日付系入力のクリアボタン非表示 */
input[type="date"]::-webkit-clear-button,
input[type="month"]::-webkit-clear-button,
input[type="datetime-local"]::-webkit-clear-button,
input[type="time"]::-webkit-clear-button,
input[type="week"]::-webkit-clear-button {
  appearance: none;
}

/* セレクトボックス */
select {
  appearance: none;
}

.c-select {
  display: block;
  position: relative;
}

.c-select select {
  padding-right: 2.5em;
}

.c-select::after {
  content: "▼";
  display: block;
  font-size: 16px;
  line-height: 1;
  margin: auto;
  pointer-events: none;
  position: absolute;
  right: 20px;
  top: 50%;
  color: #808080;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .c-select::after {
    font-size: 12px;
    right: 12px;
  }
}

option:disabled {
  color: #ccc;
  opacity: 1;
}

/* スライダー (type="range") */
input[type="range"] {
  appearance: none;
  width: 100%;
  height: 4px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: #ddd;
  margin: 0.5em 0;
  accent-color: var(--color-form);
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  background: var(--color-primary);
  border-radius: 50%;
  cursor: pointer;
  margin-top: -6px;
}

input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: var(--color-primary);
  border-radius: 50%;
  cursor: pointer;
}

input[type="range"]::-moz-range-track {
  height: 4px;
  background: #ddd;
}

/* ラジオボタン・チェックボックス共通
   --size-check (variables.css) を変更すると全体のサイズが連動します */
input[type="radio"],
input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}

input[type="radio"] + span,
input[type="checkbox"] + span {
  cursor: pointer;
  display: inline-block;
  line-height: 1.5;
  padding-left: calc(var(--size-check) + 0.45em);
  font-weight: 500;
  position: relative;
}

@media screen and (max-width: 768px) {
  input[type="radio"] + span,
  input[type="checkbox"] + span {
    font-size: 16px;
  }
}

input[type="radio"]:focus-visible + span,
input[type="checkbox"]:focus-visible + span {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ラジオボタン */
input[type="radio"] + span::before {
  background: #fff;
  border: 1px solid #333333;
  border-radius: 50%;
  content: "";
  height: var(--size-check);
  left: 0;
  position: absolute;
  top: calc((1.5em - var(--size-check)) / 2);
  width: var(--size-check);
}

input[type="radio"] + span::after {
  content: "";
  display: none;
}

input[type="radio"]:checked + span::after {
  background: var(--color-primary);
  border-radius: 50%;
  display: block;
  height: calc(var(--size-check) * 0.5);
  left: calc(var(--size-check) * 0.25);
  position: absolute;
  top: calc((1.5em - var(--size-check)) / 2 + var(--size-check) * 0.25);
  width: calc(var(--size-check) * 0.5);
}

/* チェックボックス */
input[type="checkbox"] + span::before {
  background: #fff;
  border: 1px solid #333333;
  border-radius: 5px;
  content: "";
  height: var(--size-check);
  left: 0;
  position: absolute;
  top: calc((1.5em - var(--size-check)) / 2);
  width: var(--size-check);
}

input[type="checkbox"] + span::after {
  content: "";
  display: none;
}

input[type="checkbox"]:checked + span::after {
  border-bottom: 3px solid var(--color-primary);
  border-right: 3px solid var(--color-primary);
  content: "";
  display: block;
  height: calc(var(--size-check) * 0.6);
  left: calc(var(--size-check) * 0.35);
  position: absolute;
  top: calc((1.5em - var(--size-check)) / 2 + var(--size-check) * 0.13);
  transform: rotate(45deg);
  width: calc(var(--size-check) * 0.35);
}
}

@layer layout{

.l-main {
  /* margin-top: calc(var(--height-header) * 1px); */
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  background-color: white;
  position: relative;
  z-index: 2;
  overflow-x: clip;
}

@media screen and (max-width: 768px) {
  .l-main {
  margin-top: calc(var(--height-header) * 1px);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}

.l-col-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.l-inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.l-inner-sm {
  max-width: calc(var(--width-inner-sm) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.l-inner-lg {
  max-width: calc(var(--width-inner-lg) * 1px);
  margin-left: auto;
  margin-right: auto;
}
}

@layer vendor{
/* プラグイン等のベンダースタイル上書き用 */
}

@layer vendor{
/* ブロックエディタ用のスタイル */
#wp-postbody {
  display: flow-root;
  overflow: clip;
  font-size: 1rem;
}

#wp-postbody :where(.wp-block-pullquote) {
  font-size: 1em;
}

#wp-postbody > * {
  margin-top: 1em;
  margin-bottom: 1em;
}

#wp-postbody > *:first-child {
  margin-top: 0;
}

#wp-postbody > *:last-child {
  margin-bottom: 0;
}

#wp-postbody h1 {
  font-size: 1.75em;
}

#wp-postbody h2 {
  font-size: 1.5em;
  padding-bottom: 0.4em;
  border-bottom: 1px solid var(--color-primary);
}

#wp-postbody h3 {
  font-size: 1.25em;
}

#wp-postbody h4 {
  font-size: 1.125em;
}

#wp-postbody h5 {
  font-size: 1.25em;
}

#wp-postbody h6 {
  font-size: 1em;
}

#wp-postbody :is(th, td) {
  padding: 0.5em;
}

#wp-postbody blockquote {
  border: 1px solid #808080;
  padding: 1.5em;
}

#wp-postbody .wp-block-pullquote {
  font-size: 1em !important;
  line-height: unset !important;
  margin: 1em 0 !important;
  padding: unset !important;
}

#wp-postbody figure {
  max-width: 100%;
}

#wp-postbody figure.wp-block-table {
  overflow: visible;
}

#wp-postbody figcaption {
  text-align: center;
  margin-top: 0.2em;
  margin-bottom: 0.2em;
}

#wp-postbody figure.aligncenter {
  margin-left: auto !important;
  margin-right: auto !important;
}

#wp-postbody img {
  max-width: 100%;
}

#wp-postbody
  :is(img.alignnone, img.alignleft, img.alignright, img.aligncenter) {
  display: block;
  height: auto;
  margin-bottom: 0.5em;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
  width: auto;
}

#wp-postbody img.alignnone {
  margin-left: 0;
}

#wp-postbody img.alignleft {
  float: left;
  margin-left: 0;
  margin-right: 0.5em;
}

#wp-postbody img.alignright {
  float: right;
  margin-left: 0.5em;
  margin-right: 0;
}

#wp-postbody ul > li {
  margin-top: 1em;
  padding-left: 1em;
  position: relative;
}

#wp-postbody ul > li::before {
  background: currentColor;
  border-radius: 50%;
  content: "";
  display: block;
  height: 0.4em;
  left: 0.25em;
  position: absolute;
  top: calc(1lh / 2);
  width: 0.4em;
  translate: -50% -50%;
}

#wp-postbody ol {
  counter-reset: li;
}

#wp-postbody ol > li {
  list-style: none;
  margin-top: 1em;
  padding-left: 1.8em;
  position: relative;
}

#wp-postbody ol > li::before {
  content: counter(li) ".";
  counter-increment: li;
  font-weight: bold;
  left: 0;
  position: absolute;
  top: 0;
}

#wp-postbody a[href] {
  text-decoration: underline;
}

#wp-postbody table {
  width: 100%;
}

#wp-postbody table th {
  font-weight: 700;
}

#wp-postbody dt {
  font-weight: 700;
}

#wp-postbody dd {
  margin-bottom: 1.25em;
}

#wp-postbody pre,
#wp-postbody code {
  white-space: pre-wrap;
}

#wp-postbody .aligncenter {
  display: block;
}

#wp-postbody .alignright {
  float: right;
  margin-left: 0.5em;
  margin-right: 0;
}

#wp-postbody .alignleft {
  float: left;
  margin-left: 0;
  margin-right: 0.5em;
}

#wp-postbody .wp-caption,
#wp-postbody [class*="wp-image"] {
  display: block;
  max-width: 100%;
  object-fit: contain;
  text-align: center;
}

#wp-postbody .wp-caption-text {
  margin-bottom: 0;
  margin-top: 0;
}

#wp-postbody summary::before {
  content: "▽";
  margin-right: 0.2em;
  display: inline-block;
}

#wp-postbody details[open] > summary::before {
  content: "▼";
}

#wp-postbody details > * {
  margin-top: 1em;
}

#wp-postbody details > *:first-child {
  margin-top: 0;
}

#wp-postbody .wp-element-button {
  background-color: var(--color-primary);
  color: #fff;
}

#wp-postbody a[href].wp-element-button {
  text-decoration: none;
}

/* ----------------------------------------
 * Password Form
 * ---------------------------------------- */
#wp-postbody .post-password-form input[type="password"] {
  border: 1px solid #ccc;
  padding: 0.5em 0.8em;
  font-size: 1em;
  width: 100%;
  max-width: 300px;
}

#wp-postbody .post-password-form input[type="submit"] {
  display: inline-block;
  padding: 0.5em 2em;
  font-size: 1em;
  line-height: 1;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s;
}

#wp-postbody .post-password-form input[type="submit"]:hover {
  opacity: 0.7;
}
}

@layer vendor{

.v-wysiwyg {
  font-size: 16px;
  line-height: calc(30 / 16);
}

@media screen and (max-width: 768px) {
  .v-wysiwyg {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: calc(44 / 24);
    margin-top: 2%;
  }
}

/* ----------------------------------------
 * Spacing
 * ---------------------------------------- */
.v-wysiwyg > * + * {
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .v-wysiwyg > * + * {
    margin-top: 2%;
  }
}

/* ----------------------------------------
 * Headings
 * ---------------------------------------- */
.v-wysiwyg h2 {
  font-size: 24px;
  line-height: calc(36 / 24);
  font-weight: 700;
  padding-bottom: 0.4em;
  border-bottom: 1px solid var(--v-wysiwyg-accent, #86322a);
}

.v-wysiwyg h3 {
  font-size: 22px;
  line-height: calc(36 / 22);
  font-weight: 700;
}

.v-wysiwyg h4 {
  font-size: 18px;
  line-height: calc(30 / 18);
  font-weight: 700;
}

.v-wysiwyg h5 {
  font-size: 16px;
  line-height: calc(30 / 16);
  font-weight: 700;
}

.v-wysiwyg h6 {
  font-size: 14px;
  line-height: calc(26 / 14);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .v-wysiwyg h2 {
    font-size: clamp(16px, 5vw, 20px);
    line-height: calc(44 / 24);
  }

  .v-wysiwyg h3 {
    font-size: clamp(14px, 4.375vw, 18px);
    line-height: calc(44 / 24);
  }

  .v-wysiwyg h4 {
    font-size: clamp(13px, 4vw, 16px);
    line-height: calc(44 / 24);
  }
}

/* ----------------------------------------
 * Paragraph
 * ---------------------------------------- */
.v-wysiwyg p {
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .v-wysiwyg p {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: calc(44 / 24);
  }
}

/* ----------------------------------------
 * Lists (ul)
 * ---------------------------------------- */
.v-wysiwyg ul {
  font-weight: 500;
  display: flex;
  flex-direction: column;
}

.v-wysiwyg ul > li {
  text-indent: -1em;
  padding-left: 1em;
}

.v-wysiwyg ul > li::before {
  content: "\25CF";
  color: var(--v-wysiwyg-accent, #86322a);
  margin-right: 0.25em;
}

/* ----------------------------------------
 * Lists (ol)
 * ---------------------------------------- */
.v-wysiwyg ol {
  font-weight: 500;
  counter-reset: li;
}

.v-wysiwyg ol > li {
  list-style: none;
  padding-left: 1.8em;
  position: relative;
}

.v-wysiwyg ol > li::before {
  content: counter(li) ".";
  counter-increment: li;
  font-weight: 700;
  left: 0;
  position: absolute;
  top: 0;
  color: var(--v-wysiwyg-accent, #86322a);
}

/* ----------------------------------------
 * Links
 * ---------------------------------------- */
.v-wysiwyg a[href] {
  text-decoration: underline;
}

/* ----------------------------------------
 * Table
 * ---------------------------------------- */
.v-wysiwyg table {
  width: 100%;
}

.v-wysiwyg :is(th, td) {
  padding: 0.5em;
}

.v-wysiwyg th {
  font-weight: 700;
}

/* ----------------------------------------
 * Blockquote
 * ---------------------------------------- */
.v-wysiwyg blockquote {
  border: 1px solid #808080;
  padding: 1.5em;
}

/* ----------------------------------------
 * Images
 * ---------------------------------------- */
.v-wysiwyg img {
  max-width: 100%;
  height: auto;
}

.v-wysiwyg .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.v-wysiwyg .alignleft {
  float: left;
  margin-right: 0.5em;
}

.v-wysiwyg .alignright {
  float: right;
  margin-left: 0.5em;
}

/* ----------------------------------------
 * Caption
 * ---------------------------------------- */
.v-wysiwyg .wp-caption,
.v-wysiwyg [class*="wp-image"] {
  display: block;
  max-width: 100%;
  object-fit: contain;
}

.v-wysiwyg .wp-caption-text {
  text-align: center;
  margin-top: 0.2em;
}

/* ----------------------------------------
 * Definition List
 * ---------------------------------------- */
.v-wysiwyg dt {
  font-weight: 700;
}

.v-wysiwyg dd {
  margin-bottom: 1.25em;
}

/* ----------------------------------------
 * Code
 * ---------------------------------------- */
.v-wysiwyg pre,
.v-wysiwyg code {
  white-space: pre-wrap;
}
}

@layer components{

.c-button-simple {
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  display: inline-block;
  max-width: 100%;
  padding: 1em;
  text-align: center;
}

.c-button-simple__text {
  color: white;
}

/* ----------------------------------------
 * Button Ribbon
 * ---------------------------------------- */
.c-button-ribbon {
  --ribbon-height: 60px;
  --ribbon-tail: 34px;
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: var(--ribbon-height);
  padding-left: 20px;
  padding-right: 20px;
  background-color: #86322a;
  border: none;
  text-decoration: none;
  cursor: pointer;
  width: max(320px, 100%);
  transition: opacity 0.2s;
  padding-left: calc(2 * var(--ribbon-tail));
}

@media screen and (max-width: 768px) {
  .c-button-ribbon {
    --ribbon-height: calc(30 / 320 * 100vw);
    --ribbon-tail: calc(15 / 320 * 100vw);
    min-height: var(--ribbon-height);
    width: min(100%, calc(192 / 320 * 100vw));
  }
}
.c-button-ribbon:hover {
  opacity: 0.8;
}

.c-button-ribbon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: var(--ribbon-tail);
  height: 100%;
  background-color: #b3b3b3;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.c-button-ribbon__text {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .c-button-ribbon__text {
    font-size: clamp(14px, 4.375vw, 18px);
    line-height: calc(36 / 28);
  }
}

.c-button-logo {
  min-height: 72px;
  display: block;
  display: grid;
  place-items: center;
  min-width: 302px;
  border-radius: 10px;
  transition: opacity 0.2s;
}

@media screen and (max-width: 768px) {
  .c-button-logo {
    min-width: clamp(151px, calc(151 / 320 * 100vw), 320px);
    min-height: clamp(36px, calc(36 / 320 * 100vw), 72px);
    border-radius: clamp(5px, calc(5 / 320 * 100vw), 10px);
  }
  .c-button-logo__img {
    height: 70%;
    width: auto;
  }
}

.c-button-logo:hover {
  opacity: 0.7;
}

.c-button-logo._tonewood {
  background-color: var(--color-tonewood);
}
.c-button-logo._lyre {
  background-color: var(--color-lyre);
}
.c-button-logo._mother {
  background-color: var(--color-mother);
}
}

@layer components{

.c-button-arrow {
  --btn-bg: transparent;
  --btn-border: #333;
  --btn-color: #333;
  --btn-width: min(100%, 292px);

  display: inline-flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  column-gap: 1em;
  row-gap: 1em;
  width: 100%;
  padding: min(11px,1%) min(18px,1.6%);
  background-color: var(--btn-bg);
  border: 2px solid var(--btn-border);
  border-radius: 10px;
  color: var(--btn-color);
  cursor: pointer;
  position: relative;
  width: var(--btn-width);
}

@media screen and (max-width: 768px) {
  .c-button-arrow {
    --btn-width: clamp(192px, calc(192/320 * 100vw), 292px);
    min-height: clamp(30px, calc(30 / 320 * 100vw), 60px);
    padding: 1% 1.6%;
    border: 1px solid var(--btn-border);
  }
}

.c-button-arrow::before {
  content: "";
  position: absolute;
  inset: -2px;
  background-color: rgba(204, 204, 204, 0.6);
  pointer-events: none;
  border-radius: inherit;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.2s;
}

.c-button-arrow._mother {
  --btn-bg: var(--color-mother);
  --btn-border: var(--color-mother);
  --btn-color: white;
}

.c-button-arrow._lyre {
  --btn-bg: var(--color-lyre);
  --btn-border: var(--color-lyre);
  --btn-color: white;
}
.c-button-arrow._tonewood {
  --btn-bg: var(--color-tonewood);
  --btn-border: var(--color-tonewood);
  --btn-color: white;
}
.c-button-arrow._lg {
  --btn-width: min(100%, 384px);
}
@media screen and (max-width: 768px) {
  .c-button-arrow._lg {
    --btn-width: clamp(192px, calc(192/320 * 100vw), 292px);
  }
}

.c-button-arrow:hover::before {
  opacity: 1;
}

.c-button-arrow__text {
  font-size: 22px;
  flex: 1;
  text-align: center;
  color: inherit;
}

@media screen and (max-width: 768px) {
  .c-button-arrow__text {
    font-size: clamp(14px, 4.375vw, 18px);
  }
}

.c-button-arrow__arrow {
  flex-shrink: 0;
  fill: var(--btn-color);
}
}

@layer components{

.c-hamburger {
  align-items: center;
  cursor: pointer;
  display: flex;
}

/* 閉じた状態: toggle.svg */
.c-hamburger__open {
  display: flex;
  align-items: center;
}

.c-hamburger__open img {
  display: block;
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 768px) {
  .c-hamburger__open img {
    width: 30px;
    height: 30px;
  }
}

/* 開いた状態: 「閉じる」+ icon_close.svg */
.c-hamburger__close {
  align-items: center;
  display: flex;
  column-gap: 14px;
  row-gap: 14px;
}

.c-hamburger__label {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.c-hamburger__close img {
  display: block;
  width: 25px;
  height: 25px;
}

/* 状態切替 (aria-expanded) */
.c-hamburger[aria-expanded="false"] .c-hamburger__close {
  display: none;
}

.c-hamburger[aria-expanded="true"] .c-hamburger__open {
  display: none;
}

.c-hamburger[aria-expanded="true"] .c-hamburger__close {
  display: flex;
}

@media (max-width: 768px) {
  .c-hamburger__close {
    color: #fff;
    column-gap: 10px;
    row-gap: 10px;
  }

  .c-hamburger__close img {
    filter: brightness(0) invert(1);
    width: 18px;
    height: 18px;
  }

  .c-hamburger__label {
    font-size: 12px;
  }
}
}

@layer components{

.c-heading-craft {
  display: flex;
  align-items: center;
  column-gap: 5px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .c-heading-craft {
    padding-left: 1.5em;
    position: relative;
    display: block;
  }
}
.c-heading-craft__text {
  font-size: 28px;
  line-height: calc(40 / 28);
}

@media screen and (max-width: 768px) {
  .c-heading-craft__text {
    font-size: clamp(16px, 5vw, 21px);
    line-height: 1;
  }
}
.c-heading-craft__square {
  color: var(--color-craft-kind);
  font-size: 28px;
  line-height: calc(40 / 28);
}
@media screen and (max-width: 768px) {
  .c-heading-craft__square {
    font-size: clamp(16px, 5vw, 21px);
    line-height: 1;
    position: absolute;
    left: 0;
    top: 0.25em;
  }
}
.c-heading-craft__note {
  font-size: 16px;
  line-height: calc(30 / 16);
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .c-heading-craft__note {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: calc(44 / 24);
  }
}
}

@layer components{

.c-craft-flow__list {
  display: flex;
  column-gap: 6px;
  flex-wrap: wrap;
  row-gap: 20px;

  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .c-craft-flow__list {
    column-gap: 1.5%;
  }
}
.c-craft-flow__item:nth-child(1) {
  --color-craft-flow-border: var(--color-text);
  --color-craft-flow-text: var(--color-text);
}
.c-craft-flow__item:nth-child(3) {
  --color-craft-flow-border: var(--color-craft-kind);
  --color-craft-flow-text: var(--color-craft-kind);
}
.c-craft-flow__item:nth-child(5) {
  --color-craft-flow-border: #999999;
  --color-craft-flow-text: white;
  --color-craft-flow-bg: #999999;
}
.c-craft-flow__item:nth-child(7) {
  --color-craft-flow-text: white;
  --color-craft-flow-border: var(--color-craft-kind);
  --color-craft-flow-bg: var(--color-craft-kind);
}
.c-craft-flow__item:nth-child(8) {
  --color-craft-flow-text: var(--color-craft-kind);
}
.c-craft-flow__item:nth-child(8) .-arrow {
  color: var(--color-craft-flow-text);
}
.c-craft-flow__item:nth-child(9) {
  --color-craft-flow-border: white;
  --color-craft-flow-text: var(--color-craft-kind);
}

.c-craft-flow._repair .c-craft-flow__item:nth-child(1) {
  --color-craft-flow-border: var(--color-text);
  --color-craft-flow-text: var(--color-text);
}
.c-craft-flow._repair .c-craft-flow__item:nth-child(3) {
  --color-craft-flow-border: var(--color-craft-kind);
  --color-craft-flow-text: var(--color-craft-kind);
}
.c-craft-flow._repair .c-craft-flow__item:nth-child(4) {
  --color-craft-flow-text: var(--color-craft-kind);
}
.c-craft-flow._repair .c-craft-flow__item:nth-child(5) {
  --color-craft-flow-border: var(--color-craft-kind);
  --color-craft-flow-text: var(--color-craft-kind);
  --color-craft-flow-bg: white;
}
.c-craft-flow._repair .c-craft-flow__item:nth-child(6) {
  --color-craft-flow-text: var(--color-craft-kind);
}
.c-craft-flow._repair .c-craft-flow__item:nth-child(7) {
  --color-craft-flow-border: #999999;
  --color-craft-flow-text: white;
  --color-craft-flow-bg: #999999;
}
.c-craft-flow._repair .c-craft-flow__item:nth-child(9) {
  --color-craft-flow-text: white;
  --color-craft-flow-border: var(--color-craft-kind);
  --color-craft-flow-bg: var(--color-craft-kind);
}
.c-craft-flow._repair .c-craft-flow__item:nth-child(10) {
  --color-craft-flow-text: var(--color-craft-kind);
}
.c-craft-flow._repair .c-craft-flow__item:nth-child(n + 2) .-arrow {
  color: var(--color-craft-flow-text);
}
.c-craft-flow._repair .c-craft-flow__item:nth-child(11) .c-craft-flow__name {
  --color-craft-flow-border: white;
  --color-craft-flow-text: var(--color-craft-kind);
  width: 80px;
}

.c-craft-flow__name {
  color: var(--color-craft-flow-text, var(--color-craft-flow-text));
  background-color: var(--color-craft-flow-bg, white);
  font-size: 22px;
  line-height: calc(32 / 22);
  display: grid;
  place-items: center;
  border-radius: 73px;
  width: 146px;
  height: 146px;
  border: 2px solid var(--color-craft-flow-border, var(--color-craft-flow-text));
  text-align: center;
}

@media screen and (max-width: 768px) {
  .c-craft-flow__name {
    width: clamp(80px, calc(80 / 320 * 100vw), calc(80px * 1.3));
    height: clamp(80px, calc(80 / 320 * 100vw), calc(80px * 1.3));
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: calc(32 / 24);
    border: 1px solid
      var(--color-craft-flow-border, var(--color-craft-flow-text));
  }
}

@media screen and (max-width: 768px) {
  .c-craft-flow__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: clamp(80px, calc(80 / 320 * 100vw), calc(80px * 1.3));
  }
  .c-craft-flow__item .-arrow {
    width: clamp(20px, calc(20 / 320 * 100vw), calc(20px * 1.3));
    height: clamp(80px, calc(80 / 320 * 100vw), calc(80px * 1.3));
  }

  .c-craft-flow__item:has(.-arrow) {
    align-self: flex-start;
    width: unset;
  }
}

.c-craft-flow__text {
  max-width: 150px;
  font-size: 16px;
  line-height: calc(22 / 16);
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .c-craft-flow__text {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: 1.5;
    max-width: 100px;
    margin-left: -10px;
    margin-right: -10px;
  }
}
}

@layer components{

.c-media-showroom__heading {
  font-size: 36px;
  line-height: calc(44 / 36);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .c-media-showroom__heading {
    font-size: clamp(18px, 5.625vw, 24px);
    line-height: 1.5;
  }
}

.c-media-showroom__layout {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 636fr 464fr;
  column-gap: 5%;
}

@media screen and (max-width: 768px) {
  .c-media-showroom__layout {
    grid-template-columns: 1fr;
    row-gap: calc(13 / 320 * 100vw);
    margin-top: 3%;
  }
}
.c-media-showroom__left {
  min-width: 0;
  flex-shrink: 0;
}

.c-media-showroom__slider-main .swiper-slide {
  aspect-ratio: 598 / 332;
  overflow: hidden;
}

.c-media-showroom__slider-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.c-media-showroom__slider-thumbnail {
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .c-media-showroom__slider-thumbnail {
    margin-top: 3%;
  }
}

.c-media-showroom__slider-thumbnail .swiper-slide {
  width: 66px !important;
  height: 66px !important;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.c-media-showroom__slider-thumbnail .swiper-slide-thumb-active {
  opacity: 1;
}

.c-media-showroom__slider-thumbnail .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.c-media-showroom__slider-note {
  margin-top: 10px;
  font-size: 16px;
  line-height: calc(28 / 16);
}

@media screen and (max-width: 768px) {
  .c-media-showroom__slider-note {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: calc(44 / 24);
    margin-top: 1%;
  }
}

.c-media-showroom__name {
  font-size: 22px;
  line-height: calc(34 / 22);
  font-weight: 500;
  font-weight: 700;
  margin-block: var(--leading-trim);
}

@media screen and (max-width: 768px) {
  .c-media-showroom__name {
    font-size: clamp(14px, 4.375vw, 18px);
    line-height: calc(44 / 24);
  }
}

.c-media-showroom__price {
  margin-top: 8px;
  font-weight: 700;
  font-size: 22px;
  line-height: calc(34 / 22);
}

@media screen and (max-width: 768px) {
  .c-media-showroom__price {
    font-size: clamp(14px, 4.375vw, 18px);
    line-height: calc(44 / 24);
    margin-top: unset;
  }
}

.c-media-showroom__price .-num {
  font-size: 22px;
  line-height: calc(34 / 22);
}

@media screen and (max-width: 768px) {
  .c-media-showroom__price .-num {
    font-size: clamp(14px, 4.375vw, 18px);
    line-height: calc(44 / 24);
  }
}

.c-media-showroom__price .-tax {
  line-height: calc(34 / 16);
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .c-media-showroom__price .-tax {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: calc(44 / 24);
  }
}

.c-media-showroom__inner-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  column-gap: 4%;
}

@media screen and (max-width: 768px) {
  .c-media-showroom__inner-layout {
    margin-top: 3%;
  }
}

.c-media-showroom__code {
  font-weight: 700;
  font-size: 16px;
  line-height: calc(34 / 16);
}

@media screen and (max-width: 768px) {
  .c-media-showroom__code {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: calc(44 / 24);
  }
}

.c-media-showroom__payment {
  display: inline-block;
  min-width: 157px;
  padding: 5px 10px;
  background-color: #86322a;
  color: #fff;
  line-height: calc(34 / 16);
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  transition: opacity 0.2s;
}

@media screen and (max-width: 768px) {
  .c-media-showroom__payment {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: calc(44 / 24);
    min-width: unset;
    padding: 0.3em 0.6em;
  }
}

.c-media-showroom__payment:hover {
  opacity: 0.8;
}
}

@layer components{

.c-media-case__upper {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

@media screen and (max-width: 768px) {
  .c-media-case__upper {
    column-gap: 3%;
  }
}

.c-media-case__num {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background-color: var(--color-repair);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .c-media-case__num {
    width: clamp(50px, calc(50 / 320 * 100vw), 86px);
    height: clamp(50px, calc(50 / 320 * 100vw), 86px);
  }
}

.c-media-case__num .-name {
  font-size: 26px;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .c-media-case__num .-name {
    font-size: clamp(14px, 4.375vw, 18px);
  }
}

.c-media-case__num .-num {
  margin-top: 2px;
  font-size: 26px;
}

@media screen and (max-width: 768px) {
  .c-media-case__num .-num {
    font-size: clamp(14px, 4.375vw, 18px);
  }
}

.c-media-case__heading {
  font-size: 36px;
  line-height: calc(58 / 36);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .c-media-case__heading {
    font-size: clamp(18px, 5.625vw, 24px);
    line-height: calc(44 / 24);
  }
}

.c-media-case__layout {
  margin-top: 25px;
  display: grid;
  grid-template-columns: 706fr 440fr;
  grid-template-rows: auto 1fr;
  column-gap: 4%;
}

@media screen and (max-width: 768px) {
  .c-media-case__layout {
    grid-template-columns: 1fr;
    margin-top: 3%;
    row-gap: 15px;
  }
}

.c-media-case__layout > *:nth-child(1) {
  grid-area: 1 / 1 / 3 / 2;
}
.c-media-case__layout > *:nth-child(2) {
  grid-area: 1 / 2 / 2 / 3;
}
.c-media-case__layout > *:nth-child(3) {
  margin-top: 25px;
  grid-area: 2 / 2 / 3 / 3;
}

.c-media-case__layout:not(:has(.c-media-case__thumbnail)) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 6.1%;
}
.c-media-case__layout:not(:has(.c-media-case__thumbnail))
  .c-media-case__layout
  > *:nth-child(1) {
  grid-area: 1 / 1 / 2 / 2;
}
.c-media-case__layout:not(:has(.c-media-case__thumbnail))
  .c-media-case__layout
  > *:nth-child(2) {
  grid-area: 1 / 2 / 2 / 3;
  margin-top: unset;
}

@media screen and (max-width: 768px) {
  .c-media-case__layout > *:nth-child(1) {
    grid-area: auto;
  }
  .c-media-case__layout > *:nth-child(2) {
    grid-area: auto;
  }
  .c-media-case__layout > *:nth-child(3) {
    grid-area: auto;
    margin-top: 3%;
  }

  .c-media-case__layout:not(:has(.c-media-case__thumbnail)) {
    grid-template-columns: 1fr;
  }
  .c-media-case__layout:not(:has(.c-media-case__thumbnail))
    .c-media-case__layout
    > *:nth-child(1) {
    grid-area: auto;
  }
  .c-media-case__layout:not(:has(.c-media-case__thumbnail))
    .c-media-case__layout
    > *:nth-child(2) {
    grid-area: auto;
  }
}

.c-media-case__left {
  min-width: 0;
}

.c-media-case__thumbnail > .-img {
  width: 100%;
}

.c-media-case__summary {
  font-size: 28px;
  line-height: calc(44 / 28);
  font-weight: 500;
  margin-block: var(--leading-trim);
}

@media screen and (max-width: 768px) {
  .c-media-case__summary {
    font-size: clamp(16px, 5vw, 21px);
  }
}

.c-media-case__editor {
  --v-wysiwyg-accent: var(--color-repair);
}

.c-media-case__point {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 6.1%;
  row-gap: 40px;
}

@media screen and (max-width: 768px) {
  .c-media-case__point {
    margin-top: 5%;
    grid-template-columns: 1fr;
    row-gap: calc(13 / 320 * 100vw);
    display: flex;
    flex-direction: column;
  }
}

.c-media-case__figure {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.c-media-case__figure > .-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 508/350;
}

.c-media-case__figure > .-figcaption {
  margin-top: 15px;
  font-size: 16px;
  line-height: calc(30 / 16);
}

@media screen and (max-width: 768px) {
  .c-media-case__figure > .-figcaption {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: calc(44 / 24);
    margin-top: 2%;
  }
}
}

@layer components{

.c-heading-about {
  display: flex;
  column-gap: 30px;
  flex-wrap: wrap;
  align-items: flex-end;
}

@media screen and (max-width: 768px) {
  .c-heading-about {
    column-gap: 15px;
  }
}

.c-heading-about__en {
  font-size: 68px;
  line-height: calc(72 / 68);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #999999;
}

@media screen and (max-width: 768px) {
  .c-heading-about__en {
    font-size: clamp(34px, calc(34 / 375 * 100vw), 68px);
  }
}

.c-heading-about__ja {
  font-size: 22px;
  line-height: calc(38 / 22);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .c-heading-about__ja {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: 1.5;
  }
}
}

@layer components{

.c-block-tel {
  display: flex;
  align-items: center;
  column-gap: 10px;
  text-decoration: none;
  transition: opacity 0.2s;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .c-block-tel {
    display: grid;
    grid-template-columns: auto 1fr;
    row-gap: calc(5 / 320 * 100vw);
  }

  .c-block-tel > *:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
  }
  .c-block-tel > *:nth-child(2) {
    grid-area: 1 / 2 / 2 / 3;
  }
  .c-block-tel > *:nth-child(3) {
    grid-area: 2 / 1 / 3 / 3;
    text-align: center;
  }
}
.c-block-tel:hover {
  opacity: 0.8;
}

.c-block-tel__icon {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .c-block-tel__icon .-img {
    width: clamp(29px, calc(29 / 320 * 100vw), 38px);
  }
}

.c-block-tel__num {
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .c-block-tel__num .-img {
    width: clamp(213px, calc(213 / 320 * 100vw), 285px);
  }
}

.c-block-tel__business {
  padding-left: 10px;
  font-size: 16px;
  line-height: calc(20 / 16);
}

@media screen and (max-width: 768px) {
  .c-block-tel__business {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: calc(30 / 24);
  }
}
.c-block-tel__business .-parts {
  display: block;
}
@media screen and (max-width: 768px) {
  .c-block-tel__business .-parts {
    display: inline-block;
  }
}
}

@layer components{

.c-block-mail {
  display: flex;
  align-items: center;
  column-gap: 10px;
  row-gap: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.c-block-mail:hover {
  opacity: 0.8;
}

.c-block-mail__icon {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .c-block-mail__icon .-img {
    width: clamp(29px,calc(29 / 320 * 100vw), 38px);
  }
}
@media screen and (max-width: 768px) {
  .c-block-mail__name {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: calc(30 / 24);
  }
}
}

@layer components{

.c-craft-menu {
  display: block;
  padding: 14px 5px;
  border-radius: 15px;
  color: #fff;
  text-align: center;
  transition: opacity 0.2s;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .c-craft-menu {
    padding: 6% 0;
    border-radius: 8px;
  }
}

.c-craft-menu:hover {
  opacity: 0.8;
}

.c-craft-menu._acoustic {
  background-color: var(--color-craft-acoustic);
}

.c-craft-menu._electric {
  background-color: var(--color-craft-electric);
}

.c-craft-menu._classic {
  background-color: var(--color-craft-classic);
}

.c-craft-menu__heading {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .c-craft-menu__heading {
    height: calc(10 / 320 * 100vw);
  }
}

.c-craft-menu__text {
  margin-top: 8px;
  font-size: 28px;
  line-height: calc(36 / 28);
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .c-craft-menu__text {
    font-size: clamp(18px, 4.375vw, 22px);
    line-height: 1.4;
    margin-top: 1%;
  }
}
}

@layer components{

.c-footer-external__text {
  font-size: 16px;
  font-weight: 500;
  line-height: calc(33 / 16);
}

@media screen and (max-width: 768px) {
  .c-footer-external__text {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: 1.5;
  }
}
.c-footer-external {
  transition: opacity 0.2s;
}
.c-footer-external:hover {
  opacity: 0.7;
}
}

@layer components{

.c-card-post__link {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  transition: opacity 0.2s;
  column-gap: 25px;
}

@media screen and (max-width: 768px) {
  .c-card-post__link {
    grid-template-columns: 1fr 1fr;
    column-gap: unset;
  }

  .c-card-post__link > *:nth-child(1) {
    margin-right: 9%;
  }
}

.c-card-post__link:hover {
  opacity: 0.7;
}

.c-card-post__thumbnail {
  background-color: #ccc;
  aspect-ratio: 256 / 188;
  overflow: hidden;
}

.c-card-post__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-card-post__body {
  display: flex;
  flex-direction: column;
}

.c-card-post__date {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .c-card-post__date {
    font-size: clamp(12px, 3.75vw, 16px);
    margin-block: var(--leading-trim);
  }
}

.c-card-post__title {
  font-size: 16px;
  font-weight: 400;
  line-height: calc(28 / 16);
  color: #333;
}

@media screen and (max-width: 768px) {
  .c-card-post__title {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: 1.5;
    margin-top: 2%;
  }
}

.c-card-post__badge {
  margin-top: auto;
  padding-top: 15px;
}

.c-card-post__badge > img {
  height: 34px;
  width: auto;
}

@media screen and (max-width: 768px) {
  .c-card-post__badge > img {
    height: clamp(18px, calc(18 / 320 * 100vw), 34px);
  }
}
}

@layer components{

.c-card-youtube__link {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  transition: opacity 0.2s;
  column-gap: 25px;
}

@media screen and (max-width: 768px) {
  .c-card-youtube__link {
    grid-template-columns: 1fr 1fr;
    column-gap: unset;
  }

  .c-card-youtube__link > *:nth-child(1) {
    margin-right: 9%;
  }
}

.c-card-youtube__link:hover {
  opacity: 0.7;
}

.c-card-youtube__thumbnail {
  background-color: #ccc;
  aspect-ratio: 256 / 188;
  overflow: hidden;
}

.c-card-youtube__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-card-youtube__body {
  display: flex;
  flex-direction: column;
}

.c-card-youtube__date {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .c-card-youtube__date {
    font-size: clamp(12px, 3.75vw, 16px);
    margin-block: var(--leading-trim);
  }
}

.c-card-youtube__title {
  font-size: 16px;
  font-weight: 400;
  line-height: calc(28 / 16);
  color: #333;
}

@media screen and (max-width: 768px) {
  .c-card-youtube__title {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: 1.5;
    margin-top: 2%;
  }
}

.c-card-youtube__badge {
  margin-top: auto;
  padding-top: 15px;
}

.c-card-youtube__badge > img {
  height: 24px;
  width: auto;
}

@media screen and (max-width: 768px) {
  .c-card-youtube__badge > img {
 height: clamp(18px, calc(18 / 320 * 100vw), 24px);
  }
}
}

@layer components{

.c-pagination__list {
  display: flex;
  align-items: center;
  column-gap: 8px;
  row-gap: 8px;
  list-style: none;
}

.c-pagination__item > a,
.c-pagination__item > span {
  display: grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  border: 1px solid var(--color-primary);
  transition: background-color 0.2s, color 0.2s;
}

.c-pagination__item > a {
  color: var(--color-primary);
  background-color: #fff;
}

.c-pagination__item > a:hover {
  background-color: var(--color-primary);
  color: #fff;
}

/* current page */
.c-pagination__item > span.current {
  background-color: var(--color-primary);
  color: #fff;
}

/* dots */
.c-pagination__item > span.dots {
  border: none;
  min-width: auto;
  padding: 0 4px;
  color: var(--color-primary);
}
}

@layer components{

.c-form-cf7__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 15px;
  margin-top: 31px;
}

@media screen and (max-width: 768px) {
  .c-form-cf7__head {
    margin-top: 5%;
    column-gap: 8px;
  }
}

.c-form-cf7__label,
.c-form-cf7__sub-label {
  font-size: 22px;
  line-height: calc(36 / 22);
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .c-form-cf7__label,
  .c-form-cf7__sub-label {
    font-size: 16px;
    line-height: 1.5;
  }
}

.c-form-cf7__sub-label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 15px;
}

@media screen and (max-width: 768px) {
  .c-form-cf7__sub-label {
    column-gap: 8px;
  }
}

.c-form-cf7__required {
  font-size: 16px;
  line-height: calc(24 / 16);
  background-color: #c1272d;
  border-radius: 5px;
  font-weight: 500;
  display: grid;
  place-items: center;
  color: white;
  width: 44px;
}

@media screen and (max-width: 768px) {
  .c-form-cf7__required {
    font-size: 12px;
    width: 36px;
    border-radius: 3px;
  }
}

.c-form-cf7__optional {
  font-size: 16px;
  line-height: calc(24 / 16);
  background-color: #736357;
  border-radius: 5px;
  font-weight: 500;
  display: grid;
  place-items: center;
  color: white;
  width: 44px;
}

@media screen and (max-width: 768px) {
  .c-form-cf7__optional {
    font-size: 12px;
    width: 36px;
    border-radius: 3px;
  }
}

.c-form-cf7__note,
.c-form-cf7__note--inline {
  font-size: 16px;
  line-height: calc(22 / 16);
}

@media screen and (max-width: 768px) {
  .c-form-cf7__note,
  .c-form-cf7__note--inline {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: 1.5;
  }
}

.c-form-cf7__body {
  margin-top: 13px;
}

@media screen and (max-width: 768px) {
  .c-form-cf7__body {
    margin-top: 2%;
  }
}

.c-form-cf7__address-row {
  margin-top: 23px;
}

@media screen and (max-width: 768px) {
  .c-form-cf7__address-row {
    margin-top: 3%;
  }
}

.c-form-cf7__address-row._col-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 6.1%;
}

@media screen and (max-width: 768px) {
  .c-form-cf7__address-row._col-2 {
    grid-template-columns: 1fr;
    row-gap: 15px;
  }
}

.c-form-cf7__body-short input {
  max-width: 550px;
}

.c-form-cf7__list._address {
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .c-form-cf7__list._address {
    margin-top: 5%;
  }
}

.c-form-cf7__body .wpcf7-radio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 6.1%;
}

.c-form-cf7__body .wpcf7-checkbox {
  display: flex;
  column-gap: 30px;
  row-gap: 15px;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .c-form-cf7__body .wpcf7-checkbox {
    column-gap: 4%;
    row-gap: 8px;
  }
}

.c-form-cf7__body .wpcf7-checkbox .wpcf7-list-item {
  margin: 0 !important;
}

.c-form-cf7__body .wpcf7-radio .wpcf7-list-item {
  border: 1px solid #333333;
  background-color: #fff;
  font-size: 1rem;
  min-width: 0;
  padding: 0.6em 1.5em;
  width: 100%;
  accent-color: var(--color-form);
  margin: 0 !important;
  font-size: 22px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .c-form-cf7__body .wpcf7-radio .wpcf7-list-item {
    font-size: 16px;
    padding: 0.5em 1em;
  }
}

.c-form-cf7__agreement {
  display: grid;
  place-items: center;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .c-form-cf7__agreement {
    margin-top: 5%;
  }
}

.c-form-cf7__submit {
  display: grid;
  place-items: center;
  margin-top: 35px;
}

@media screen and (max-width: 768px) {
  .c-form-cf7__submit {
    margin-top: 5%;
  }
}

.c-form-cf7__confirm-buttons {
  display: flex;
  justify-content: center;
  column-gap: 6.1%;
  margin-top: 35px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .c-form-cf7__confirm-buttons {
    margin-top: 5%;
    column-gap: 4%;
  }
}

.c-form-cf7__confirm-btn,
.c-form-cf7__back-btn,
.wpcf7-submit {
  font-size: 22px;
  line-height: calc(36 / 22);
  width: 264px;
  height: 54px;
  background-color: #c1272d;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
  transition: opacity 0.2s;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .c-form-cf7__confirm-btn,
  .c-form-cf7__back-btn,
  .wpcf7-submit {
    font-size: 16px;
    line-height: 1.5;
    width: 45%;
    height: 48px;
  }
}

.c-form-cf7__back-btn {
  background-color: #b3b3b3;
}

.c-form-cf7__confirm-btn:hover {
  opacity: 0.8;
}

.c-form-cf7__error-message {
  color: var(--color-error);
  font-weight: 700;
  margin-top: 5px;
}

@media screen and (max-width: 768px) {
  .c-form-cf7__error-message {
    font-size: clamp(12px, 3.75vw, 16px);
  }
}

.wpcf7-spinner {
  position: absolute !important;
  bottom: 0 !important;
  left: 50% !important;
  translate: -50% 150% !important;
  margin: 0 !important;
}

.wpcf7 form .wpcf7-response-output {
  padding: 1em !important;
  font-size: 22px;
}

@media screen and (max-width: 768px) {
  .wpcf7 form .wpcf7-response-output {
    font-size: 16px;
  }
}

.c-form-cf7__body._textarea-lg textarea {
  height: 320px;
}

@media screen and (max-width: 768px) {
  .c-form-cf7__body._textarea-lg textarea {
    height: 200px;
  }
}

.c-form-cf7__confirm-heading {
  font-size: 28px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .c-form-cf7__confirm-heading {
    font-size: clamp(16px, 5vw, 21px);
    line-height: 1.5;
  }
}

.c-form-cf7__confirm-note {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .c-form-cf7__confirm-note {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: 1.5;
  }
}
.wpcf7-not-valid-tip {
  color: var(--color-error) !important;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .wpcf7-not-valid-tip {
    margin-top: 5px;
  }
}
}

@layer components{
@media screen and (max-width: 768px) {
  .c-logo-header__img {
    width: 98px;
  }
}
@media screen and (max-width: 768px) {
  .c-logo-footer__img {
    width: 96px;
  }
}
}

@layer components{

.c-navigation-post__list {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  column-gap: 24px;
}

.c-navigation-post__item--prev {
  justify-self: end;
}

.c-navigation-post__item--next {
  justify-self: start;
}

@media screen and (max-width: 768px) {
  .c-navigation-post__list {
    grid-template-columns: 1fr 1fr;
    column-gap: 8px;
    row-gap: 8px;
  }

  .c-navigation-post__item--prev {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: stretch;
  }

  .c-navigation-post__item--list {
    grid-area: 2 / 1 / 3 / 3;
  }

  .c-navigation-post__item--next {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: stretch;
  }
}

.c-navigation-post__link {
  display: inline-block;
  padding: 0.8em 1.5em;
  font-size: 14px;
  line-height: 1;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  text-align: center;
  transition: background-color 0.2s, color 0.2s;
}

.c-navigation-post__link:hover {
  background-color: var(--color-primary);
  color: #fff;
}

@media screen and (max-width: 768px) {
  .c-navigation-post__link {
    display: block;
    font-size: clamp(11px, 3.4375vw, 14px);
    padding: 0.7em 1em;
  }
}

.c-navigation-post__link--prev::before {
  content: "←";
  margin-right: 0.4em;
}

.c-navigation-post__link--next::after {
  content: "→";
  margin-left: 0.4em;
}
}

@layer site{

.s-header {
  padding-left: var(--gutter);
  padding-right: calc(1.6 * var(--gutter));
  height: calc(var(--height-header) * 1px);
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: var(--zIndex-header);
  padding-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .s-header {
    padding-bottom: unset;
    background-color: var(--color-primary);
    padding-right: var(--gutter);
  }
}

.s-header._bg {
  background-color: var(--color-primary);
}

.s-header__inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
}

.s-header__spmenu {
  height: 100vh;
  height: 100svh;
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: 0.3s;
  width: 100vw;
  z-index: var(--zIndex-spmenu);
}

.s-header__toggle {
  position: relative;
  z-index: var(--zIndex-toggle);
}
}

@layer site{

.s-header-nav__list {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
}

.s-header-nav__list .menu-item {
  flex-grow: 1;
  position: relative;
}

.s-header-nav__list .menu-item > a {
  color: var(--color-primary);
}

.s-header-nav__list .menu-item > a[aria-current="page"] {
  font-weight: 700;
}
}

@layer site{

.s-spmenu {
  height: 100lvh;
  overflow: hidden;
  pointer-events: none;
  position: relative;
  width: 100%;
}

.s-spmenu:not([inert]) {
  pointer-events: auto;
}

/* overlay */
.s-spmenu::before {
  backdrop-filter: brightness(0.6) saturate(0.5);
  background-color: #42210b;
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.4s var(--ease-out-cubic);
}

.s-spmenu:not([inert])::before {
  opacity: 0.9;
}

/* content wrapper (bg + inner slide together) */
.s-spmenu__content {
  height: 100%;
  margin-left: auto;
  opacity: 0;
  overflow-y: auto;
  position: relative;
  transform: translateX(calc(30 / 1280 * min(100vw, 1920px)));
  transition:
    opacity 0.4s var(--ease-out-cubic) 0.15s,
    transform 0.4s var(--ease-out-cubic) 0.15s;
  width: calc(910 / 1280 * 100%);
}

.s-spmenu:not([inert]) .s-spmenu__content {
  opacity: 1;
  transform: translateX(0);
}

/* background image */
.s-spmenu__bg {
  display: block;
  height: 100lvh;
  margin-bottom: -100lvh;
  position: sticky;
  top: 0;
  width: 100%;
}

.s-spmenu__bg-img {
  height: 100%;
  object-fit: cover;
  object-position: left;
  width: 100%;
}

/* content */
.s-spmenu__inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding-left: 28%;
  padding-top: calc(var(--height-header) * 1px + 2.6lvh);
  position: relative;
  z-index: 1;
  padding-right: 10%;
  column-gap: 2%;
  padding-bottom: 4%;
}

/* nav */
.s-spmenu-nav__list {
  column-count: 2;
  column-gap: calc(40 / 1280 * min(100vw, 1920px));
}

.s-spmenu-nav__link {
  display: block;
  font-size: calc(22 / 1280 * min(100vw, 1920px));
  line-height: calc(52 / 22);
  text-decoration: none;
  transition: opacity 0.2s;
  font-weight: 500;
}

.s-spmenu-nav__link:hover {
  opacity: 0.7;
}

/* middle (external links) */
.s-spmenu__middle {
  display: flex;
  row-gap: calc(30 / 1280 * min(100vw, 1920px));
  column-gap: 15%;
  margin-top: 2.4lvh;
  align-items: flex-end;
}

.c-header-external {
  display: block;
  text-decoration: none;
  transition: opacity 0.2s;
}

.c-header-external:hover {
  opacity: 0.7;
}

.c-header-external__text {
  font-size: calc(16 / 1280 * min(100vw, 1920px));
  font-weight: 500;
  line-height: calc(33 / 16);
}

.c-header-external__img {
  width: calc(208 / 1280 * min(100vw, 1920px));
  height: auto;
}

/* sns */
.s-spmenu__sns {
  margin-top: calc(20 / 1280 * min(100vw, 1920px));
}

.s-nav-sns__list {
  display: flex;
  align-items: center;
  column-gap: 4%;
  margin-top: 4lvh;
}
.s-nav-sns._footer .s-nav-sns__list {
  column-gap: 5%;
}

@media screen and (max-width: 768px) {
  .s-nav-sns__list {
    justify-content: space-between;
    padding-left: 10%;
  }
}

@media screen and (max-width: 1024px) {
  .s-nav-sns._footer .s-nav-sns__list {
    flex-direction: column;
    row-gap: 15px;
    align-items: flex-start;
  }
}

@media screen and (max-width: 768px) {
  .s-nav-sns._footer .s-nav-sns__list {
    margin-top: 20px;
    flex-direction: row;
    justify-content: flex-start;
    column-gap: 20px;
    align-items: center;
  }
}

.s-nav-sns__link {
  display: block;
  transition: opacity 0.2s;
}

.s-nav-sns__link:hover {
  opacity: 0.7;
}

.s-nav-sns__img {
  height: calc(52 / 1280 * min(100vw, 1920px));
  width: auto;
}
.s-nav-sns._footer .s-nav-sns__img._blog {
  height: min(43px, calc(43 / 1280 * min(100vw, 1920px)));
}
.s-nav-sns._footer .s-nav-sns__img._instagram {
  height: min(40px, calc(40 / 1280 * min(100vw, 1920px)));
}
.s-nav-sns._footer .s-nav-sns__img._tiktok {
  height: min(39px, calc(39 / 1280 * min(100vw, 1920px)));
}
.s-nav-sns._footer .s-nav-sns__img._youtube {
  height: min(30px, calc(30 / 1280 * min(100vw, 1920px)));
}

@media screen and (max-width: 1024px) {
  .s-nav-sns._footer .s-nav-sns__img._blog {
    height: 43px;
  }
  .s-nav-sns._footer .s-nav-sns__img._instagram {
    height: 40px;
  }
  .s-nav-sns._footer .s-nav-sns__img._tiktok {
    height: 39px;
  }
  .s-nav-sns._footer .s-nav-sns__img._youtube {
    height: 30px;
  }
}

/* lower (CTA) */
.s-spmenu__lower {
  margin-top: 8lvh;
  display: flex;
  justify-content: space-between;
}

/* bottom */
.s-spmenu__bottom {
  margin-top: 5lvh;
}

@media screen and (max-width: 768px) {
  .s-spmenu__bottom {
    margin-top: 2lvh;
    padding-left: 32%;
  }
}

.s-spmenu__privacy {
  font-size: calc(22 / 1280 * min(100vw, 1920px));
  line-height: calc(52 / 22);
  text-decoration: none;
  transition: opacity 0.2s;
  font-weight: 500;
}

.s-spmenu__privacy:hover {
  opacity: 0.7;
}

.s-spmenu__tel .-link {
  transition: opacity 0.2s;
  display: grid;
  grid-template-columns: calc(34 / 1280 * min(100vw, 1920px)) auto;
  grid-template-rows: auto auto;
  width: fit-content;
  column-gap: calc(10 / 1280 * min(100vw, 1920px));
  row-gap: calc(5 / 1280 * min(100vw, 1920px));
}
.s-spmenu__tel .-link > *:nth-child(1) {
  display: block;
  grid-area: 1 / 1 / 3 / 2;
}
.s-spmenu__tel .-link > *:nth-child(2) {
  grid-area: 1 / 2 / 2 / 3;
  display: block;
}
.s-spmenu__tel .-link > *:nth-child(3) {
  grid-area: 2 / 2 / 3 / 3;
}

.s-spmenu__tel .-link:hover {
  opacity: 0.7;
}

.s-spmenu__tel .-icon {
  width: calc(34 / 1280 * min(100vw, 1920px));
  height: calc(34 / 1280 * min(100vw, 1920px));
  translate: 0 -20%;
}

.s-spmenu__tel .-num {
  width: calc(191 / 1280 * min(100vw, 1920px));
  height: auto;
}

.s-spmenu__tel .-business {
  font-weight: 700;
  font-size: calc(16 / 1280 * min(100vw, 1920px));
  line-height: calc(20 / 16);
}

.s-spmenu__mail .-link {
  transition: opacity 0.2s;
  display: grid;
  grid-template-columns: calc(34 / 1280 * min(100vw, 1920px)) auto;
  width: fit-content;
  column-gap: calc(10 / 1280 * min(100vw, 1920px));
}

.s-spmenu__mail .-link:hover {
  opacity: 0.7;
}

.s-spmenu__mail .-icon {
  width: calc(34 / 1280 * min(100vw, 1920px));
  height: calc(34 / 1280 * min(100vw, 1920px));
}

.s-spmenu__mail .-text {
  font-size: calc(22 / 1280 * min(100vw, 1920px));
  font-weight: 700;
}

/* portrait tablet (iPad Pro etc.) */
@media (orientation: portrait) and (min-width: 768px) {
  .s-spmenu__content {
    width: calc(1200 / 1280 * 100%);
  }
}

/* sp */
@media (max-width: 768px) {
  .s-spmenu {
    height: calc(100lvh - var(--height-header) * 1px);
    margin-top: calc(var(--height-header) * 1px);
  }

  .s-spmenu__bg {
    height: calc(100lvh - var(--height-header) * 1px);
    margin-bottom: calc(-100lvh + var(--height-header) * 1px);
  }

  .s-spmenu__inner {
    padding-top: 3lvh;
    padding-left: 11%;
    padding-right: 6%;
  }

  .s-spmenu__nav {
    padding-left: 32%;
  }
  .s-spmenu__content {
    width: calc(594 / 640 * 100%);
    transform: translateX(calc(30 / 320 * 100vw));
  }

  .s-spmenu-nav__list {
    column-count: 1;
  }

  .s-spmenu-nav__link {
    font-size: calc(14 / 320 * 100vw);
  }

  .c-header-external__text {
    font-size: calc(12 / 320 * 100vw);
  }

  .c-header-external__img {
    width: calc(125 / 320 * 100vw);
  }

  .s-spmenu__middle {
    flex-direction: column;
    align-items: center;
    padding-left: 13%;
    margin-top: 1.8lvh;
    row-gap: 2lvh;
  }

  .s-nav-sns__img {
    height: calc(45 / 320 * 100vw);
  }

  .s-spmenu__lower {
    flex-direction: column;
    row-gap: 2lvh;
    margin-top: 4lvh;
    width: fit-content;
    margin-left: auto;
  }

  .s-spmenu__tel .-icon,
  .s-spmenu__mail .-icon {
    width: calc(21 / 320 * 100vw);
    height: calc(21 / 320 * 100vw);
  }

  .s-spmenu__tel .-link {
    grid-template-columns: calc(21 / 320 * 100vw) auto;
  }

  .s-spmenu__mail .-link {
    grid-template-columns: calc(21 / 320 * 100vw) auto;
  }

  .s-spmenu__tel .-business {
    font-size: calc(12 / 320 * 100vw);
  }

  .s-spmenu__tel .-num {
    width: calc(113 / 320 * 100vw);
  }

  .s-spmenu__mail .-text {
    font-size: calc(14 / 320 * 100vw);
  }

  .s-spmenu__privacy {
    font-size: calc(14 / 320 * 100vw);
  }
}
}

@layer site{
/* フッタースタイル */
.s-footer {
  background-color: #55210b;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-top: 130px;
  margin-top: -80px;
  padding-bottom: 40px;
  color: white;
}

@media screen and (max-width: 768px) {
  .s-footer {
    padding-top: 9%;
    margin-top: -4%;
    padding-bottom: 8%;
  }
}

.s-footer__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.s-footer__layout {
  display: grid;
  grid-template-columns: 1.7fr 2fr 1fr;
  grid-template-rows: 1fr auto;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
@media screen and (max-width: 768px) {
  .s-footer__layout {
    grid-template-columns: 1fr;
  }
}

.s-footer__logo {
  padding-top: 10px;
  grid-area: 1 / 1 / 2 / 2;
}
@media screen and (max-width: 768px) {
  .s-footer__logo {
    grid-area: auto;
  }
}

.s-footer__corner {
  grid-area: 2 / 1 / 3 / 2;
  align-self: end;
  padding-right: 6%;
}
@media screen and (max-width: 768px) {
  .s-footer__corner {
    grid-area: auto;
    margin-top: 6%;
    padding-right: unset;
  }
}

.s-footer__nav {
  grid-area: 1 / 2 / 3 / 3;
}

@media screen and (max-width: 768px) {
  .s-footer__nav {
    grid-area: auto;
  }
  .s-footer__nav .s-footer-nav {
    display: none;
  }
}

.s-footer__external {
  grid-area: 1 / 3 / 2 / 4;
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}

@media screen and (max-width: 768px) {
  .s-footer__external {
    grid-area: auto;
    flex-direction: row;
    align-items: flex-end;
    column-gap: 8%;
    margin-top: 5%;
  }
}

.s-footer__copyright {
  grid-area: 2 / 3 / 3 / 4;
  align-self: end;
  text-align: right;
  font-size: 10px;
  margin-left: -10%;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .s-footer__copyright {
    grid-area: auto;
    text-align: left;
    align-self: unset;
    margin-left: unset;
    margin-top: 9%;
    font-size: clamp(10px, 3.125vw, 13px);
    padding-bottom: unset;
  }
}

.s-footer__name {
  font-size: 22px;
  line-height: calc(38 / 22);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .s-footer__name {
    font-size: clamp(14px, 4.375vw, 18px);
    line-height: calc(38 / 28);
  }
}
.s-footer__address {
  font-size: 16px;
  line-height: calc(28 / 16);
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .s-footer__address {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: calc(36 / 24);
  }
}

.s-footer__sns {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}
}

@layer site{

.s-footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 1024px) {
  .s-footer-nav {
    grid-template-columns: 1fr;
  }
}

.s-footer-nav__list {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.s-footer-nav__link {
  font-weight: 500;
  color: white;
  font-size: 16px;
  line-height: calc(33 / 16);
  transition: opacity 0.2s;
}
.s-footer-nav__link:hover {
  opacity: 0.7;
}
}

@layer site{

@media screen and (max-width: 768px) {
  .s-section-buttons {
    padding-bottom: 4%;
    padding-top: 9%;
  }
}

.s-section-buttons__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.s-section-buttons__layout {
  display: flex;
  justify-content: center;
  row-gap: 30px;
  flex-wrap: wrap;
  column-gap: 30px;
}

.s-section-buttons__layout > .c-button-ribbon {
  flex-basis: 320px;
}

@media screen and (max-width: 768px) {
  .s-section-buttons__layout {
    row-gap: calc(17 / 320 * 100vw);
    margin-left: auto;
    margin-right: auto;
    width: 75%;
  }
  .s-section-buttons__layout > .c-button-ribbon {
    flex-basis: unset;
  }
}

.s-section-buttons__layout:has(> :nth-child(4)):not(:has(> :nth-child(5))) {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 768px) {
  .s-section-buttons__layout:has(> :nth-child(4)):not(:has(> :nth-child(5))) {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

.s-section-buttons__layout:has(> :nth-child(4)):not(:has(> :nth-child(5))) > * {
  width: min(100%, 320px);
}

.s-section-buttons__layout:has(> :nth-child(4)):not(:has(> :nth-child(5)))
  > :nth-child(odd) {
  justify-self: end;
}

@media screen and (max-width: 768px) {
  .s-section-buttons__layout:has(> :nth-child(4)):not(:has(> :nth-child(5)))
    > :nth-child(odd) {
    justify-self: unset;
  }
}

.s-section-buttons__layout:has(> :nth-child(4)):not(:has(> :nth-child(5)))
  > :nth-child(even) {
  justify-self: start;
}
@media screen and (max-width: 768px) {
  .s-section-buttons__layout:has(> :nth-child(4)):not(:has(> :nth-child(5)))
    > :nth-child(even) {
    justify-self: unset;
  }
}
@media screen and (max-width: 768px) {
  .s-section-buttons__layout {
    flex-direction: column;
    align-items: center;
  }
}
}

@layer site{

.s-section-cta {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-bottom: 40px;
  padding-top: 40px;
}

@media screen and (max-width: 768px) {
  .s-section-cta {
    padding-top: 8%;
    padding-bottom: 4%;
  }
}

.s-section-cta._craft-child {
  padding-left: unset;
  padding-right: unset;
}

@media screen and (max-width: 768px) {
  .s-section-cta._craft-child {
    padding-top: 2%;
    padding-bottom: 2%;
  }
}

.s-section-cta._repair {
  --color-section-cta-heading: var(--color-text);
}

@media screen and (max-width: 768px) {
  .s-section-cta._repair {
    padding-top: 4%;
    padding-bottom: 6%;
  }
}

.s-section-cta._repair .s-section-cta__heading {
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  .s-section-cta._repair .s-section-cta__heading {
    margin-bottom: 4%;
  }
}
.s-section-cta__inner {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.s-section-cta__heading {
  background-color: var(--color-craft-kind, transparent);
  font-size: 22px;
  line-height: calc(36 / 22);
  color: var(--color-section-cta-heading, white);
  text-align: center;
  padding: 0.7em;
  margin-bottom: 32px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .s-section-cta__heading {
    font-size: clamp(14px, 4.375vw, 18px);
    line-height: calc(42 / 28);
    padding: 0.9em;
    margin-bottom: 8%;
  }
}

.s-section-cta__layout {
  display: flex;
  justify-content: center;
  column-gap: 50px;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .s-section-cta__layout {
    flex-direction: column;
    row-gap: 15px;
  }
}
}

@layer page{

.p-page404-body {
  padding-top: calc(var(--height-header) * 1px + 60px);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-bottom: 120px;
}

.p-page404-body__num {
  letter-spacing: 0.1em;
  font-size: 120px;
  font-weight: 300;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p-page404-body__num {
    font-size: 72px;
  }
}

.p-page404-body__heading {
  font-size: 28px;
  margin-top: 20px;
  text-align: center;
}

.p-page404-body__heading .-ib {
  display: inline-block;
}

.p-page404-body__text {
  margin-top: 30px;
  text-align: center;
  font-size: 16px;
  line-height: calc(30 / 16);
}

.p-page404-body__button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}
}

@layer page{

.p-about-mv {
  background-color: #55210b;
  position: relative;
}

.p-about-mv__visual > .-img {
  display: block;
  width: calc(858 / 1280 * 100%);
  margin-left: auto;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 25% 100%);
}

.p-about-mv__heading {
  position: absolute;
  top: 51%;
  left: calc(100 / 1280 * 100vw);
  translate: 0 -50%;
}

.p-about-mv__heading .-img {
  width: calc(279 / 1280 * 100vw);
}

.p-about-mv__heading .-main {
  font-size: clamp(14px, calc(28 / 1280 * 100vw), 999px);
  color: white;
  margin-top: 6%;
}

@media screen and (max-width: 768px) {
  .p-about-mv__heading {
    left: var(--gutter);
  }

  .p-about-mv__heading .-img {
    width: clamp(72px, calc(72 / 320 * 100vw), 279px);
  }

  .p-about-mv__heading .-main {
    font-size: clamp(12px, 3.75vw, 16px);
  }
}
}

@layer page{

.p-about-second {
  padding-top: 60px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-about-second {
    padding-top: 7%;
  }
}

.p-about-second__inner {
  position: relative;
}

.p-about-second__layout {
  display: grid;
  grid-template-columns: 1fr 348px;
  column-gap: 4%;
}

.p-about-second__layout > *:nth-child(1) {
  grid-area: 1 / 1 / 2 / 2;
  margin-right: -12%;
  position: relative;
  z-index: 2;
}
.p-about-second__layout > *:nth-child(2) {
  border-radius: 999em;
  grid-area: 1 / 2 / 3 / 3;
}
.p-about-second__layout > *:nth-child(3) {
  grid-area: 2 / 1 / 3 / 2;
}

@media screen and (max-width: 768px) {
  .p-about-second__layout {
    grid-template-columns: 2fr minmax(120px, 1fr);
  }
  .p-about-second__layout > *:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
    margin-right: unset;
  }
  .p-about-second__layout > *:nth-child(2) {
    grid-area: 1 / 2 / 2 / 3;
  }
  .p-about-second__layout > *:nth-child(3) {
    grid-area: 2 / 1 / 3 / 3;
  }
}

.p-about-second__left {
  margin-right: -4%;
}

.p-about-second__right .p-about-second__pic .-img {
  border-radius: 999em;
}

.p-about-second__catch {
  font-size: clamp(28px, calc(36 / 1280 * 100vw), 36px);
  line-height: calc(58 / 36);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-about-second__catch {
    font-size: clamp(18px, 5.625vw, 28px);
  }
}

.p-about-second__text {
  font-size: 16px;
  line-height: calc(28 / 16);
  margin-top: 20px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .p-about-second__text {
    font-size: clamp(12px, 3.75vw, 16px);
    margin-top: 7%;
  }
}

.p-about-second__pics {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: 416px;
}

@media screen and (max-width: 768px) {
  .p-about-second__pics {
    grid-template-columns: 1fr;
    max-height: unset;
    margin-top: 12%;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }
}

.p-about-second__pic .-img {
  max-height: 416px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
}

@layer page{

.p-about-message {
  padding-top: 75px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-about-message {
    padding-top: 9%;
  }
}

.p-about-message__inner {
  position: relative;
}

.p-about-message__layout {
  margin-top: 25px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto 1fr;
  row-gap: 100px;
}

@media screen and (max-width: 768px) {
  .p-about-message__layout {
    grid-template-columns: 1fr;
    grid-template-rows: unset;
    margin-top: 4%;
    row-gap: unset;
  }
}
.p-about-message__layout > *:nth-child(1) {
  grid-area: 1 / 1 / 3 / 2;
}

@media screen and (max-width: 768px) {
  .p-about-message__layout > *:nth-child(1) {
    grid-area: auto;
  }
}
.p-about-message__layout > *:nth-child(2) {
  grid-area: 1 / 2 / 2 / 3;
  padding-left: 12%;
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .p-about-message__layout > *:nth-child(2) {
    grid-area: auto;
    padding-left: unset;
    margin-top: 5%;
  }
}
.p-about-message__layout > *:nth-child(3) {
  grid-area: 2 / 2 / 3 / 3;
  padding-left: 12%;
}

@media screen and (max-width: 768px) {
  .p-about-message__layout > *:nth-child(3) {
    grid-area: auto;
    padding-left: unset;
    margin-top: 8%;
  }
}
.p-about-message__catch {
  font-weight: 700;
  font-size: 36px;
  line-height: calc(58 / 36);
}

@media screen and (max-width: 768px) {
  .p-about-message__catch {
    font-size: clamp(18px, 5.625vw, 24px);
    line-height: 1.5;
  }
}

.p-about-message__list,
.p-about-message__text {
  font-size: 16px;
  line-height: calc(30 / 16);
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .p-about-message__list,
  .p-about-message__text {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: calc(44 / 24);
    margin-top: 3%;
  }
}

.p-about-message__list {
  margin-top: 15px;
}

.p-about-message__sub {
  font-weight: 700;
  font-size: 22px;
  line-height: calc(38 / 22);
  margin-top: 25px;
}

@media screen and (max-width: 768px) {
  .p-about-message__sub {
    font-size: clamp(15px, calc(15 / 320 * 100vw), 20px);
    line-height: calc(50 / 30);
    margin-top: 6%;
  }
}

.p-about-message__name {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-right: 8%;
}

@media screen and (max-width: 768px) {
  .p-about-message__name {
    padding-right: unset;
  }
}

.p-about-message__name .-position {
  font-size: 16px;
  line-height: calc(24 / 16);
}

@media screen and (max-width: 768px) {
  .p-about-message__name .-position {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: 1.5;
  }
}

.p-about-message__name .-name {
  font-size: 28px;
  line-height: calc(40 / 28);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-about-message__name .-name {
    font-size: clamp(16px, 5vw, 21px);
    line-height: 1.5;
  }
}

@media screen and (max-width: 768px) {
  .p-about-message__thumbnail {
    padding-left: 18%;
    padding-right: 6%;
  }
}

.p-about-message__pic .-img {
  width: 100%;
}
}

@layer page{

.p-about-philosophy {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-top: 40px;
}

@media screen and (max-width: 768px) {
  .p-about-philosophy {
    padding-top: 10%;
  }
}

.p-about-philosophy__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: calc(88 / 1080 * 100%);
  row-gap: 20px;
  margin-top: 20px;
}

@media screen and (max-width: 1024px) {
  .p-about-philosophy__layout {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .p-about-philosophy__layout {
    grid-template-columns: 1fr;
    margin-top: 4%;
    row-gap: calc(13 / 320 * 100vw);
  }
}
.p-about-philosophy__heading {
  font-size: 36px;
  line-height: calc(58 / 36);
  font-weight: 700;
  border-bottom: 1px solid;
  padding-bottom: 0.2em;
}

@media screen and (max-width: 768px) {
  .p-about-philosophy__heading {
    font-size: clamp(18px, 5.625vw, 24px);
    line-height: 1.5;
  }
}

.p-about-philosophy__subheading .c-heading-about {
  align-items: flex-end;
}
.p-about-philosophy__subheading .c-heading-about__en {
  font-size: 58px;
  line-height: calc(72 / 58);
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .p-about-philosophy__subheading .c-heading-about__en {
    font-size: clamp(30px, 9.375vw, 40px);
    line-height: 1.2;
  }
}

.p-about-philosophy__subheading .c-heading-about__ja {
  font-size: 16px;
  line-height: calc(32 / 16);
}

@media screen and (max-width: 768px) {
  .p-about-philosophy__subheading .c-heading-about__ja {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: 1.5;
  }
}

.p-about-philosophy__catch {
  font-weight: 700;
  font-size: 22px;
  line-height: calc(38 / 22);
  margin-top: 15px;
}

.p-about-philosophy__catch li {
  padding-left: 1.5em;
  text-indent: -1.5em;
}

@media screen and (max-width: 768px) {
  .p-about-philosophy__catch {
    font-size: clamp(15px, 4.375vw, 20px);
    line-height: 1.6;
    margin-top: 2%;
  }
}

.p-about-philosophy__body {
  font-size: 16px;
  line-height: calc(30 / 16);
  margin-top: 5px;
}

@media screen and (max-width: 768px) {
  .p-about-philosophy__body {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: calc(44 / 24);
  }
}
}

@layer page{

.p-about-history {
  padding-top: 40px;
  padding-bottom: 50px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-about-history {
    padding-top: 5%;
    padding-bottom: 5%;
  }
}
.p-about-history__layout {
  display: grid;
  place-items: center;
  margin-top: -30px;
}

@media screen and (max-width: 1024px) {
  .p-about-history__layout {
    display: none;
  }
}

.p-about-history__figure {
  display: none;
  margin-top: 4%;
}

.p-about-history__figure .-img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .p-about-history__figure {
    display: block;
  }
}

.p-about-history__bg {
  grid-area: 1/-1;
}
.p-about-history__body {
  grid-area: 1/-1;
}
/* ==========================================================================
   History Timeline
   ========================================================================== */

.p-about-history__list {
  position: relative;
  display: grid;
  grid-auto-rows: 84px;
  padding-bottom: 40px;
  margin-bottom: 190px;
}

@media screen and (max-width: 1100px) {
  .p-about-history__list {
    grid-auto-rows: 100px;
    margin-bottom: 80px;
  }
}

/* --- Vertical center line --- */
.p-about-history__list::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 20px;
  bottom: 15px;
  width: 2px;
  background-color: #86322a;
  transform: translateX(-50%);
}

/* --- Arrow at bottom --- */
.p-about-history__list::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 16.26px;
  height: 19.9px;
  background-color: #55210b;
  clip-path: polygon(50% 100%, 0% 0%, 50% 23.72%, 100% 0%);
}

/* ==========================================================================
   Item (each row)
   ========================================================================== */

.p-about-history__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

/* --- Dot (default: large for left items) --- */
.p-about-history__item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #86322a;
  transform: translate(-50%, 0);
  z-index: 2;
}

/* --- Smaller dot for right items --- */
.p-about-history__item--right::before {
  width: 16px;
  height: 16px;
  top: 12px;
}

/* --- Horizontal connecting line --- */
.p-about-history__item::after {
  content: "";
  position: absolute;
  top: 19px;
  height: 2px;
  background-color: #86322a;
  z-index: 1;
}

.p-about-history__item--left::after {
  right: 50%;
  width: 166px;
}

.p-about-history__item--right::after {
  left: 50%;
  width: 83px;
}

/* ==========================================================================
   Left column (large year + bold title)
   ========================================================================== */

.p-about-history__left {
  text-align: left;
  padding-right: 175px;
  translate: 25% -24%;
}

.p-about-history__year {
  display: block;
  font-size: 48px;
  font-weight: 300;
  color: #86322a;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.p-about-history__year-sub {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  margin-left: 16px;
  vertical-align: baseline;
}

.p-about-history__year-sub._color-lg {
  color: #86322a;
  font-size: 22px;
}

.p-about-history__title {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 5px;
}

/* ==========================================================================
   Right column (era year + description — horizontal layout)
   ========================================================================== */

.p-about-history__right {
  display: flex;
  align-items: flex-start;
  column-gap: 45px;
  row-gap: 45px;
  padding-left: 90px;
}

.p-about-history__era {
  display: flex;
  align-items: baseline;
  column-gap: 8px;
  row-gap: 8px;
  flex-shrink: 0;
}

.p-about-history__era .-year {
  font-size: 36px;
  font-weight: 300;
  color: #86322a;
  line-height: 1.1;
  white-space: nowrap;
  letter-spacing: -0.05em;
}

.p-about-history__era .-sub {
  font-size: 16px;
  white-space: nowrap;
  margin-left: 10px;
  font-weight: 500;
}
.p-about-history__era .-sub._color {
  color: #86322a;
}

.p-about-history__desc {
  font-size: 16px;
  line-height: calc(28 / 16);
  padding-top: 0.5em;
  max-width: 235px;
}
}

@layer page{

.p-about-company {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-top: 25px;
}

@media screen and (max-width: 768px) {
  .p-about-company {
    padding-top: 5%;
  }
}

.p-about-company__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-about-company__layout {
    grid-template-columns: 1fr;
    margin-top: 4%;
    row-gap: unset;
  }
}

.p-about-company__layout > *:nth-child(2) {
  padding-left: calc(44 / 540 * 100%);
  padding-top: 60px;
}

@media screen and (max-width: 768px) {
  .p-about-company__layout > *:nth-child(2) {
    padding-left: unset;
    padding-top: 9%;
  }
}

.p-about-company__heading {
  font-size: 28px;
  line-height: calc(40 / 28);
  font-weight: 700;
  border-bottom: 1px solid;
  padding-bottom: 0.6em;
}

@media screen and (max-width: 768px) {
  .p-about-company__heading {
    font-size: clamp(16px, 5vw, 21px);
    line-height: 1.5;
  }
}

.p-about-company__list {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) 3fr;
}

@media screen and (max-width: 768px) {
  .p-about-company__list {
    grid-template-columns: minmax(80px, auto) 1fr;
  }
}

.p-about-company__head {
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 16px;
  line-height: calc(34 / 16);
  border-bottom: 1px solid;
  font-weight: 700;
  padding-left: 10px;
}

@media screen and (max-width: 768px) {
  .p-about-company__head {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: calc(44 / 24);
    padding-top: 0.95em;
    padding-bottom: 0.95em;
    padding-left: 1em;
  }
}

.p-about-company__body {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 16px;
  line-height: calc(34 / 16);
  border-bottom: 1px solid;
}

@media screen and (max-width: 768px) {
  .p-about-company__body {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: calc(44 / 24);
    padding-top: 0.95em;
    padding-bottom: 0.95em;
    padding-left: 1em;
  }
}

.p-about-company__pics {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.p-about-company__buttons {
  display: flex;
  justify-content: center;
  column-gap: 30px;
  flex-wrap: wrap;
  row-gap: 30px;
  margin-top: 90px;
}

@media screen and (max-width: 768px) {
  .p-about-company__buttons {
    margin-top: 9%;
    column-gap: 15px;
    flex-direction: column;
    row-gap: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 60%;
  }
}

.p-about-company__pics {
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .p-about-company__pics {
    grid-template-columns: 1fr;
    margin-top: 10%;
  }
}

.p-about-company__map iframe {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .p-about-company__map iframe {
    height: 227px;
  }
}

.p-about-company__pic .-img {
  width: 100%;
  max-height: 416px;
  object-fit: cover;
  object-position: top;
}
}

@layer page{

.p-business-mv {
  position: relative;
}

.p-business-mv__visual > .-img {
  display: block;
  width: 100%;
}

.p-business-mv__heading {
  position: absolute;
  top: 56%;
  translate: 0 -50%;
  right: calc(40 / 1280 * 100vw);
}

.p-business-mv__heading .-img {
  width: calc(410 / 1280 * 100vw);
}

.p-business-mv__heading .-main {
  font-size: clamp(14px, calc(28 / 1280 * 100vw), 999px);
  color: white;
  margin-top: 3%;
}

@media screen and (max-width: 768px) {
  .p-business-mv__heading {
    right: var(--gutter);
    top: 46%;
  }

  .p-business-mv__heading .-img {
    width: clamp(108px, calc(108 / 320 * 100vw), 410px);
  }

  .p-business-mv__heading .-main {
    font-size: clamp(12px, 3.75vw, 16px);
  }
}
}

@layer page{

.p-business-about {
  padding-top: 50px;
}

@media screen and (max-width: 768px) {
  .p-business-about {
    padding-top: 7%;
  }
}

.p-business-about__inner {
  max-width: calc(var(--width-inner-lg) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-business-about__upper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  max-width: calc(var(--width-inner) * 1px + 2 * var(--gutter));
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .p-business-about__upper {
    grid-template-columns: 1fr;
  }
}
.p-business-about__heading {
  font-size: 36px;
  line-height: calc(58 / 36);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-business-about__heading {
    font-size: clamp(18px, 5.625vw, 24px);
    line-height: 1.5;
  }
}

.p-business-about__logo {
  justify-self: end;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .p-business-about__logo {
    margin-top: 9%;
    display: grid;
    place-items: center;
    justify-self: center;
  }

  .p-business-about__logo > .-img {
    width: clamp(160px, 50vw, 220px);
  }
}

.p-business-about__lower {
  margin-top: 65px;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  .p-business-about__lower {
    margin-top: 5%;
  }
}

.p-business-about__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .p-business-about__row {
    grid-template-columns: 1fr;
  }
}

.p-business-about__row:nth-child(even) > .p-business-about__head {
  order: -1;
}

.p-business-about__head {
  min-width: 0;
}

@media screen and (max-width: 768px) {
  .p-business-about__head {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
}

.p-business-about__pic > .-img {
  width: 100%;
}

.p-business-about__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 0 6% 10px 16%;
}

@media screen and (max-width: 768px) {
  .p-business-about__body {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
    padding-top: 1%;
    padding-bottom: 4%;
  }
}

.p-business-about__row:nth-of-type(2n) .p-business-about__body {
  padding: 40px 16% 10px 6%;
}

@media screen and (max-width: 768px) {
  .p-business-about__row:nth-of-type(2n) .p-business-about__body {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
    padding-top: 4%;
    padding-bottom: 4%;
  }
}
.p-business-about__body > .p-business-about__heading {
  font-size: 28px;
  line-height: calc(42 / 28);
}

@media screen and (max-width: 768px) {
  .p-business-about__body > .p-business-about__heading {
    font-size: clamp(16px, 5vw, 21px);
    line-height: 1.5;
  }
}

.p-business-about__text {
  margin-top: 18px;
  font-size: 16px;
  line-height: calc(30 / 16);
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .p-business-about__text {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: calc(44 / 24);
    margin-top: 2%;
  }
}

.p-business-about__list {
  margin-top: 18px;
  font-weight: 500;
  font-size: 16px;
  line-height: calc(30 / 16);
}

@media screen and (max-width: 768px) {
  .p-business-about__list {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: calc(44 / 24);
    margin-top: 2%;
  }
}

.p-business-about__item {
  text-indent: -1em;
  padding-left: 1em;
}

.p-business-about__item::first-letter {
  color: #86322a;
}
}

@layer page{

.p-business-builder {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-bottom: 110px;
}

@media screen and (max-width: 768px) {
  .p-business-builder {
    padding-bottom: 15%;
  }
}

.p-business-builder__heading {
  font-size: 68px;
  line-height: calc(72 / 68);
  color: #999999;
  letter-spacing: -0.03em;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .p-business-builder__heading {
    font-size: clamp(34px, 9.375vw, 40px);
    line-height: 1.2;
  }
}

.p-business-builder__catch {
  margin-top: 20px;
  font-size: 28px;
  line-height: calc(48 / 28);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-business-builder__catch {
    font-size: clamp(15px, 4.375vw, 20px);
    line-height: 1.6;
    margin-top: 3%;
  }
}

.p-business-builder__list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 8%;
  row-gap: 40px;
}

@media screen and (max-width: 768px) {
  .p-business-builder__list {
    grid-template-columns: 1fr;
    margin-top: 5%;
    row-gap: calc(10 / 320 * 100vw);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

.c-business-builder {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .c-business-builder {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 6%;
  }

  .c-business-builder__head {
    flex-shrink: 0;
  }
}

.c-business-builder__thumbnail > .-img {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
}

.c-business-builder__position {
  margin-top: 16px;
  font-size: 16px;
  line-height: calc(24 / 16);
}

@media screen and (max-width: 768px) {
  .c-business-builder__position {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: 1.5;
    margin-top: 0;
  }
}

.c-business-builder__name {
  font-size: 28px;
  line-height: calc(40 / 28);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .c-business-builder__name {
    font-size: clamp(16px, 5vw, 21px);
    line-height: 1.5;
  }
}

.c-business-builder__en {
  font-size: 16px;
  line-height: calc(24 / 16);
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .c-business-builder__en {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: 1.5;
  }
}

.p-business-builder__pics {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 768px) {
  .p-business-builder__pics {
    margin-top: 5%;
  }
}

@media screen and (max-width: 768px) {
  .p-business-builder__pics {
    grid-template-columns: 1fr 1fr;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }
}

.p-business-builder__pic > .-img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .c-business-builder__body {
    text-align: left;
  }
}
}

@layer page{

.p-business-pro {
  padding-bottom: 130px;
}

@media screen and (max-width: 768px) {
  .p-business-pro {
    padding-bottom: 10%;
  }
}

.p-business-pro__upper {
  background-color: var(--color-tonewood);
  position: relative;
}

.p-business-pro__lower {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.p-business-pro__thumbnail > .-img {
  display: block;
  width: calc(740 / 1280 * 100%);
  clip-path: polygon(0 0, 100% 0, 73% 100%, 0 100%);
}

@media screen and (max-width: 768px) {
  .p-business-pro__thumbnail > .-img {
    aspect-ratio: 370/282;
    object-fit: cover;
  }
}
.p-business-pro__heading {
  position: absolute;
  top: 50%;
  right: calc(180 / 1280 * 100vw);
  letter-spacing: -0.05em;
  translate: 0 -50%;
  color: white;
  font-size: clamp(14px, calc(72 / 1280 * 100vw), 999px);
  line-height: calc(76 / 72);
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .p-business-pro__heading {
    line-height: calc(52 / 44);
    font-size: clamp(22px, calc(22 / 320 * 100vw), 72px);
    right: 9%;
  }
}

.p-business-pro__subheading {
  margin-top: 25px;
  font-size: 36px;
  line-height: calc(58 / 36);
  text-align: center;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-business-pro__subheading {
    font-size: clamp(18px, 5.625vw, 24px);
    line-height: 1.5;
    margin-top: 6%;
  }
}

.p-business-pro__layout {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 8%;
}

@media screen and (max-width: 768px) {
  .p-business-pro__layout {
    grid-template-columns: 1fr;
    margin-top: 4%;
    row-gap: 15px;
  }
}

.p-business-pro__left {
  min-width: 0;
}

.p-business-pro__pic > .-img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .p-business-pro__pic > .-img {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-business-pro__position {
  font-size: 16px;
  line-height: calc(24 / 16);
}

@media screen and (max-width: 768px) {
  .p-business-pro__position {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: 1.5;
  }
}

.p-business-pro__name {
  display: flex;
  align-items: baseline;
  column-gap: 10px;
}

@media screen and (max-width: 768px) {
  .p-business-pro__name {
    column-gap: 15px;
  }
}
.p-business-pro__name > .-ja {
  font-size: 28px;
  line-height: calc(40 / 28);
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .p-business-pro__name > .-ja {
    font-size: clamp(18px, 5vw, 22px);
    line-height: 1.5;
  }
}

.p-business-pro__name > .-en {
  font-size: 16px;
  line-height: calc(24 / 16);
}

@media screen and (max-width: 768px) {
  .p-business-pro__name > .-en {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: 1.5;
  }
}

.p-business-pro__profile {
  margin-top: 16px;
  font-size: 16px;
  line-height: calc(30 / 16);
}

@media screen and (max-width: 768px) {
  .p-business-pro__profile {
    font-size: clamp(12px, 3.75vw, 16px);
    margin-top: 2%;
    line-height: calc(44 / 24);
  }
}

.p-business-pro__video {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .p-business-pro__video {
    margin-top: 3%;
    display: grid;
    place-items: center;
  }
}

.p-business-pro__video > iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 350 / 210;
  max-width: 350px;
}

@media screen and (max-width: 768px) {
  .p-business-pro__video > iframe {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}
}

@layer page{

.p-business-ship {
  padding-top: 45px;
  padding-bottom: 90px;
}

@media screen and (max-width: 768px) {
  .p-business-ship {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.p-business-ship__heading {
  letter-spacing: -0.03em;
  font-size: 68px;
  line-height: calc(72 / 68);
  font-weight: 300;
  color: #999999;
}

@media screen and (max-width: 768px) {
  .p-business-ship__heading {
    font-size: clamp(30px, 9.375vw, 40px);
    line-height: 1.2;
  }
}

.p-business-ship__upper {
  max-width: calc(var(--width-inner) * 1px + 2 * var(--gutter));
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin-left: auto;
  margin-right: auto;
}

.p-business-ship__catch {
  margin-top: 20px;
  font-size: 28px;
  line-height: calc(46 / 28);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-business-ship__catch {
    font-size: clamp(16px, 5vw, 21px);
    line-height: 1.5;
    margin-top: 3%;
  }
}

.p-business-ship__text {
  margin-top: 16px;
  font-size: 16px;
  line-height: calc(30 / 16);
  max-width: 47%;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .p-business-ship__text {
    max-width: unset;
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: calc(44 / 24);
    margin-top: 3%;
  }
}

.p-business-ship__lower {
  margin-top: -23%;
}

@media screen and (max-width: 768px) {
  .p-business-ship__lower {
    margin-top: 0;
  }
}

.p-business-ship__pic > .-img {
  width: 100%;
}
}

@layer page{

.p-business-story {
  padding-top: 50px;
  padding-bottom: 40px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-business-story {
    padding-left: unset;
    padding-right: unset;
    padding-top: 7%;
    padding-bottom: 9%;
  }
}

.p-business-story__heading {
  font-size: 68px;
  line-height: calc(72 / 68);
  color: #999999;
  letter-spacing: -0.03em;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .p-business-story__heading {
    font-size: clamp(30px, 9.375vw, 40px);
    line-height: 1.2;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
}

.p-business-story__list {
  margin-top: 35px;
}

@media screen and (max-width: 768px) {
  .p-business-story__list {
    margin-top: 5%;
  }
}
.p-business-story__item {
  color: white;
  position: relative;
}

.p-business-story__item:last-of-type .p-business-story__arrow {
  display: none;
}

.p-business-story__arrow {
  position: absolute;
  bottom: 0;
  translate: -50% 50%;
  left: 50%;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .p-business-story__arrow {
    display: none;
  }
}
.p-business-story__bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .p-business-story__bg {
    position: static;
  }
}

.p-business-story__bg .-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-business-story__item:nth-of-type(1) {
  background-color: #97734e;
}
.p-business-story__item:nth-of-type(2) {
  background-color: #86322a;
}
.p-business-story__item:nth-of-type(3) {
  background-color: #42210b;
}
.p-business-story__item:nth-of-type(4) {
  background-color: #d26d1e;
}
.p-business-story__subheading {
  font-size: 28px;
  font-weight: 700;
  line-height: calc(42 / 28);
}

@media screen and (max-width: 768px) {
  .p-business-story__subheading {
    font-size: clamp(15px, 5vw, 20px);
    line-height: calc(48 / 30);
  }
}

.p-business-story__body {
  width: 55%;
  padding-left: 6%;
  padding-right: 6%;
  padding-top: 50px;
  padding-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .p-business-story__body {
    width: 100%;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
    padding-top: 4%;
    padding-bottom: 9%;
  }
}

.p-business-story__item:nth-of-type(2n) .p-business-story__body {
  margin-left: auto;
  padding-left: 6%;
  padding-right: 4%;
}

@media screen and (max-width: 768px) {
  .p-business-story__item:nth-of-type(2n) .p-business-story__body {
    margin-left: auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
}
.p-business-story__text {
  font-size: 16px;
  line-height: calc(30 / 16);
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .p-business-story__text {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: calc(44 / 24);
    margin-top: 2%;
  }
}
}

@layer page{
.p-contact-head__bg {
}
.p-contact-head__bg .-img {
  width: 100%;
  max-height: 321px;
  object-fit: cover;
  object-position: bottom;
}
}

@layer page{

.p-contact-body {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-bottom: 75px;
}

@media screen and (max-width: 768px) {
  .p-contact-body {
    padding-bottom: 7%;
  }
}

.p-contact-body__inner {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.p-contact-body__heading {
  font-size: 36px;
  line-height: calc(58 / 36);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-contact-body__heading {
    font-size: clamp(18px, 5.625vw, 24px);
    line-height: 1.5;
  }
}

.p-contact-body__form {
  margin-top: 32px;
}

@media screen and (max-width: 768px) {
  .p-contact-body__form {
    margin-top: 4%;
  }
}

.p-contact-body__intro {
  font-size: 16px;
  line-height: calc(30 / 16);
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .p-contact-body__intro {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: 1.5;
    margin-top: 4%;
  }
}

.p-contact-body__lead {
  font-size: 16px;
  line-height: calc(30 / 16);
  margin-top: 25px;
  border-bottom: 1px solid;
  padding-bottom: 35px;
}

@media screen and (max-width: 768px) {
  .p-contact-body__lead {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: 1.5;
    margin-top: 3%;
    padding-bottom: 5%;
  }
}

.p-contact-body__lead [href] {
  color: #c1272d;
  text-decoration: underline;
}
}

@layer page{

.p-craft-mv {
  position: relative;
}

.p-craft-mv__visual > .-img {
  display: block;
  width: 100%;
}

.p-craft-mv__heading {
  position: absolute;
  bottom: 12%;
  right: calc(120 / 1280 * 100vw);
}

.p-craft-mv__heading .-img {
  width: calc(492 / 1280 * 100vw);
}

.p-craft-mv__heading .-main {
  font-size: clamp(14px, calc(28 / 1280 * 100vw), 999px);
  color: white;
  margin-top: 3%;
}

@media screen and (max-width: 768px) {
  .p-craft-mv__heading {
    right: var(--gutter);
    bottom: 7%;
  }

  .p-craft-mv__heading .-img {
    width: clamp(130px, calc(130 / 320 * 100vw), 493px);
  }

  .p-craft-mv__heading .-main {
    font-size: clamp(12px, 3.75vw, 16px);
  }
}
}

@layer page{

.p-craft-second {
  padding-top: 65px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-craft-second {
    padding-top: 7%;
  }
}

.p-craft-second__catch {
  font-size: 36px;
  line-height: calc(62 / 36);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-craft-second__catch {
    font-size: clamp(18px, 5.625vw, 24px);
  }
}
}

@layer page{

.p-craft-nav {
  padding-bottom: 140px;
}

@media screen and (max-width: 768px) {
  .p-craft-nav {
    padding-bottom: 10%;
  }
}

.p-craft-nav__heading {
  text-align: center;
  font-size: 22px;
  line-height: calc(32 / 22);
  margin-bottom: 30px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-craft-nav__heading {
    font-size: clamp(14px, 4.375vw, 18px);
    line-height: 1.5;
    margin-bottom: 5%;
  }
}

.p-craft-nav__buttons {
  column-gap: 30px;
  row-gap: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .p-craft-nav__buttons {
    flex-direction: column;
    flex-wrap: nowrap;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    column-gap: calc(13 / 320 * 100vw);
    row-gap: calc(13 / 320 * 100vw);
    max-width: 260px;
  }
}

.p-craft-nav__button {
  flex-basis: 320px;
}

@media screen and (max-width: 768px) {
  .p-craft-nav__button {
    flex-basis: unset;
  }
}
}

@layer page{

.p-craft-feature {
  padding-top: 110px;
  padding-bottom: 60px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  overflow: clip;
}

@media screen and (max-width: 768px) {
  .p-craft-feature {
    padding-top: 12%;
    padding-bottom: 15%;
  }
}

.p-craft-feature__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .p-craft-feature__row {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-craft-feature__left {
  margin-left: -80px;
}

@media screen and (max-width: 768px) {
  .p-craft-feature__left {
    margin-left: -17%;
  }
}

.p-craft-feature__row:nth-child(2n) > *:nth-child(1) {
  order: 2;
}

@media screen and (max-width: 768px) {
  .p-craft-feature__row:nth-child(2n) > *:nth-child(1) {
    order: unset;
  }
}

.p-craft-feature__row:nth-child(1) .p-craft-feature__right {
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .p-craft-feature__row:nth-child(1) .p-craft-feature__right {
    padding-bottom: 0;
  }
}

.p-craft-feature__row:nth-child(2n) > .p-craft-feature__left {
  margin-left: unset;
  margin-right: -80px;
}

@media screen and (max-width: 768px) {
  .p-craft-feature__row:nth-child(2n) > .p-craft-feature__left {
    margin-right: -17%;
  }
  .p-craft-feature__row:nth-child(2n) .p-craft-feature__catch {
    margin-right: 15%;
    margin-left: -15%;
  }
}

.p-craft-feature__row:not(:first-of-type) {
  margin-top: -16%;
}

@media screen and (max-width: 768px) {
  .p-craft-feature__row:not(:first-of-type) {
    margin-top: 8%;
  }
}

.p-craft-feature__catch {
  font-size: clamp(24px, calc(48 / 1280 * 100vw), 48px);
  line-height: calc(74 / 48);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-craft-feature__catch {
    font-size: clamp(24px, calc(24 / 375 * 100vw), 30px);
    line-height: calc(74 / 48);
  }
}

.p-craft-feature__catch .-star {
  position: relative;
}
.p-craft-feature__catch .-star::after {
  position: absolute;
  content: "※";
  top: 0;
  right: 0;
  font-size: 16px;
  translate: 80% -40%;
}

@media screen and (max-width: 768px) {
  .p-craft-feature__catch .-star::after {
    font-size: 12px;
  }
}

.p-craft-feature__note {
  font-size: 16px;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .p-craft-feature__note {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: calc(40 / 24);
  }
}

.p-craft-feature__right {
  padding-left: 6%;
  padding-right: 6%;
}

@media screen and (max-width: 768px) {
  .p-craft-feature__right {
    padding-left: 0;
    padding-right: 0;
    padding-top: 1%;
  }
}

.p-craft-feature__row:nth-child(2n) .p-craft-feature__right {
  margin-left: auto;
}

.p-craft-feature__thumbnail > .-img {
  width: 100%;
}
}

@layer page{

.p-craft-menu {
  padding-top: 65px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-craft-menu {
    padding-top: 7%;
  }
}

.p-craft-menu__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  row-gap: 42px;
}

@media screen and (max-width: 768px) {
  .p-craft-menu__inner {
    row-gap: calc(24 / 320 * 100vw);
  }
}

.p-craft-menu__row {
  display: grid;
  grid-template-columns: 320px 1fr auto;
  column-gap: 4%;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .p-craft-menu__row {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  .p-craft-menu__button {
    width: clamp(200px, calc(200 / 320 * 100vw), 260px);
  }
}

.p-craft-menu__text {
  font-size: 22px;
  line-height: calc(40 / 22);
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .p-craft-menu__text {
    font-size: clamp(12px, 3.75vw, 16px);
  }
}

.p-craft-menu__guide {
  display: flex;
  align-items: center;
  column-gap: 8px;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .p-craft-menu__guide {
    justify-self: start;
    margin-top: 2%;
    column-gap: 13px;
  }
}

.p-craft-menu__guide > .-text {
  font-weight: 500;
  font-size: 22px;
  line-height: calc(32 / 22);
}

@media screen and (max-width: 768px) {
  .p-craft-menu__guide > .-text {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: 1.5;
  }
}

.p-craft-menu__guide > .-arrow {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
}

.p-craft-menu__guide._acoustic > .-arrow {
  color: var(--color-craft-acoustic);
}

.p-craft-menu__guide._electric > .-arrow {
  color: var(--color-craft-electric);
}

.p-craft-menu__guide._classic > .-arrow {
  color: var(--color-craft-classic);
}
}

@layer page{

.p-craft-child {
  padding-top: calc(var(--height-header) * 1px + 68px);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .p-craft-child {
    padding-top: 6%;
    padding-bottom: 8%;
  }
}

.p-craft-child .p-craft-nav {
  padding-top: 105px;
  padding-bottom: 85px;
}

@media screen and (max-width: 768px) {
  .p-craft-child .p-craft-nav {
    padding-top: 70px;
    padding-bottom: 60px;
  }
}
}

@layer page{

.p-craft-pageheader__upper {
  padding: 32px 48px;
  background-color: var(--color-craft-kind);
}

@media screen and (max-width: 768px) {
  .p-craft-pageheader__upper {
    padding: 3% 3.5%;
  }
}
.p-craft-pageheader__heading {
  font-size: 36px;
  line-height: calc(44 / 36);
  font-weight: 700;
  color: white;
}

@media screen and (max-width: 768px) {
  .p-craft-pageheader__heading {
    font-size: clamp(14px, 4.375vw, 18px);
    line-height: calc(36 / 28);
  }
}
.p-craft-pageheader__catch {
  font-size: 44px;
  line-height: calc(70 / 44);
  color: var(--color-craft-kind);
  margin-top: 20px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-craft-pageheader__catch {
    font-size: clamp(24px, 7.5vw, 32px);
    line-height: 1.5;
    margin-top: 4%;
  }
}
.p-craft-pageheader__visual {
  position: relative;
}

.p-craft-pageheader__subheading {
  position: absolute;
  right: 4%;
  top: 45%;
  translate: 0 -50%;
}

@media screen and (max-width: 768px) {
  .p-craft-pageheader__subheading .-img {
    top: 42%;
    width: calc(150 / 320 * 100vw);
  }
}

.p-craft-pageheader._classic .p-craft-pageheader__subheading {
  right: unset;
  left: 6%;
  top: unset;
  bottom: 20%;
}
.p-craft-pageheader._electric .p-craft-pageheader__subheading {
  right: unset;
  left: 6%;
  top: unset;
  bottom: 28%;
}
}

@layer page{

.p-craft-course {
  padding-top: 35px;
}

@media screen and (max-width: 768px) {
  .p-craft-course {
    padding-top: 5%;
  }
}

.p-craft-course__main {
  font-size: 22px;
  line-height: calc(36 / 22);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-craft-course__main {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: 1.5;
    margin-top: 3%;
  }
}
.p-craft-course__main .-note {
  font-weight: 400;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .p-craft-course__main .-note {
    font-size: clamp(12px, 3.75vw, 16px);
  }
}
.p-craft-course__layout {
  margin-top: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: calc(64 / 1080 * 100%);
  row-gap: 20px;
}

@media screen and (max-width: 768px) {
  .p-craft-course__layout {
    grid-template-columns: 1fr;
    row-gap: calc(13 / 320 * 100vw);
  }
}

.p-craft-course__caption {
  font-size: 16px;
  line-height: calc(30 / 16);
  margin-top: 5px;
}

@media screen and (max-width: 768px) {
  .p-craft-course__caption {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: calc(44 / 24);
    margin-top: 1%;
  }
}

.p-craft-course__text {
  font-size: 16px;
  line-height: calc(30 / 16);
}

@media screen and (max-width: 768px) {
  .p-craft-course__text {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: calc(22 / 12);
  }
}
.p-craft-course__list {
  font-size: 16px;
  line-height: calc(30 / 16);
}

.p-craft-course__item {
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .p-craft-course__list {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: calc(22 / 12);
  }
}
.p-craft-course__item [href] {
  text-decoration: underline;
}
}

@layer page{

.p-craft-flow {
  padding-top: 30px;
  padding-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .p-craft-flow {
    padding-top: 7%;
  }
}

.p-craft-flow__flow {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .p-craft-flow__flow {
    margin-top: 4%;
  }
}
.p-craft-flow__next {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .p-craft-flow__next {
    margin-top: 9%;
  }
}
.p-craft-flow__next .-text {
  font-size: 28px;
  line-height: calc(40 / 28);
  text-align: center;
  color: var(--color-craft-kind);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-craft-flow__next .-text {
    font-size: clamp(16px, 5vw, 21px);
    line-height: calc(40 / 36);
  }
}
.p-craft-flow__next .-arrow {
  color: var(--color-craft-kind);
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .p-craft-flow__next .-arrow {
    width: calc(66 / 320 * 100vw);
    height: calc(47 / 320 * 100vw);
  }
}
.p-craft-flow__arrow {
  display: grid;
  place-items: center;
  color: var(--color-craft-kind);
}

@media screen and (max-width: 768px) {
  .p-craft-flow__arrow .-arrow {
    width: calc(46 / 320 * 100vw);
    height: calc(32 / 320 * 100vw);
  }
}

.p-craft-flow__step {
  margin-top: 25px;
}

@media screen and (max-width: 768px) {
  .p-craft-flow__step {
    margin-top: 4%;
  }
}
}

@layer page{

.p-craft-step__pics {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 768px) {
  .p-craft-step__pics {
    grid-template-columns: 1fr;
    width: 82%;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-craft-step__pics:only-child {
  grid-template-columns: 1fr;
  display: grid;
  place-items: center;
}

@media screen and (max-width: 768px) {
  .p-craft-step__pics:only-child {
    width: 95%;
  }
}
.p-craft-step__pics:only-child > * {
  max-width: 640px;
}

.p-craft-step__body {
  padding-top: 15px;
  padding-bottom: 20px;
  max-width: 508px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .p-craft-step__body {
    padding-top: 3%;
    padding-bottom: 4%;
  }
}
.p-craft-step__heading {
  font-size: 28px;
  font-weight: 700;
  line-height: calc(42 / 28);
}

@media screen and (max-width: 768px) {
  .p-craft-step__heading {
    font-size: clamp(18px, 5.625vw, 24px);
    line-height: calc(42 / 36);
  }
}

.p-craft-step__text {
  font-size: 16px;
  line-height: calc(30 / 16);
  margin-top: 5px;
}

@media screen and (max-width: 768px) {
  .p-craft-step__text {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: calc(44 / 24);
  }
}
}

@layer page{

.p-craft-option {
  padding-top: 75px;
  padding-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .p-craft-option {
    padding-top: 7%;
  }
}
.p-craft-option__list {
  display: grid;
  column-gap: 10px;
  grid-template-columns: 1.5fr 1fr;
  font-size: 16px;
  line-height: calc(30 / 16);
}

@media screen and (max-width: 768px) {
  .p-craft-option__list {
    margin-top: 1%;
    grid-template-columns: 1fr auto;
    column-gap: 4%;
  }
}

.p-craft-option__head {
  font-size: 16px;
  line-height: calc(30 / 16);
}

@media screen and (max-width: 768px) {
  .p-craft-option__head {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: 1.5;
  }
}
.p-craft-option__body {
  font-size: 16px;
  line-height: calc(30 / 16);
}
@media screen and (max-width: 768px) {
  .p-craft-option__body {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: 1.5;
  }
}

.p-craft-option__layout {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: calc(64 / 1080 * 100%);
  row-gap: 20px;
}

@media screen and (max-width: 768px) {
  .p-craft-option__layout {
    grid-template-columns: 1fr;
    row-gap: calc(13 / 320 * 100vw);
  }
}

.p-craft-option__subheading {
  font-size: 22px;
  line-height: calc(36 / 22);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-craft-option__subheading {
    font-size: clamp(14px, 4.375vw, 18px);
    line-height: calc(36 / 28);
  }
}
}

@layer page{

.p-craft-price {
  padding-top: 55px;
}

@media screen and (max-width: 768px) {
  .p-craft-price {
    padding-top: 4%;
  }
}

.p-craft-price__heading {
  font-size: 36px;
  line-height: calc(48 / 36);
  border-bottom: 1px solid;
  padding-bottom: 0.5em;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .p-craft-price__heading {
    font-size: clamp(18px, 5.625vw, 24px);
    line-height: 1.5;
  }
}
}

@layer page{

.p-craft-case {
  padding-top: 80px;
}

@media screen and (max-width: 768px) {
  .p-craft-case {
    padding-top: 10%;
  }
}

.p-craft-case__heading {
  color: white;
  background-color: var(--color-craft-kind);
  padding: 6px 65px;
  display: flex;
  column-gap: 20px;
  align-items: flex-end;
}

@media screen and (max-width: 768px) {
  .p-craft-case__heading {
    flex-direction: column;
    align-items: flex-start;
    padding: 3% 6%;
  }
}

.p-craft-case__heading .-main {
  font-size: 60px;
  line-height: calc(76 / 60);
  font-weight: 300;
  letter-spacing: -0.05em;
}

@media screen and (max-width: 768px) {
  .p-craft-case__heading .-main {
    font-size: clamp(30px, 9.375vw, 40px);
    line-height: calc(76 / 60);
  }
}
.p-craft-case__heading .-sub {
  font-size: 28px;
  line-height: calc(50 / 28);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-craft-case__heading .-sub {
    font-size: clamp(14px, 4.375vw, 18px);
    line-height: calc(40 / 28);
  }
}
.p-craft-case__intro {
  margin-top: 20px;
  font-size: 22px;
  line-height: calc(40 / 22);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-craft-case__intro {
    margin-top: 4%;
    font-size: clamp(14px, 4.375vw, 18px);
    line-height: calc(46 / 28);
  }
}
.p-craft-case__before {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: calc(64 / 1080 * 100%);
  row-gap: 20px;
}

@media screen and (max-width: 768px) {
  .p-craft-case__before {
    grid-template-columns: 1fr;
    width: 82%;
    margin-left: auto;
    margin-right: auto;
    row-gap: calc(10 / 320 * 100vw);
  }
}

.p-craft-case__arrow {
  margin-top: 25px;
  display: grid;
  place-items: center;
  color: var(--color-craft-kind);
}

@media screen and (max-width: 768px) {
  .p-craft-case__arrow {
    margin-top: 2%;
  }
}

@media screen and (max-width: 768px) {
  .p-craft-case__arrow .-arrow {
    width: calc(55 / 320 * 100vw);
    height: calc(22 / 320 * 100vw);
  }
}
.p-craft-case__after {
  margin-top: 25px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .p-craft-case__after {
    margin-top: 2%;
  }
}
}

@layer page{

.p-order-body {
  padding-top: calc(var(--height-header) * 1px + 35px);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-bottom: 125px;
}

@media screen and (max-width: 768px) {
  .p-order-body {
    padding-top: calc(var(--height-header) * 1px + 20px);
    padding-bottom: 10%;
  }
}

.p-order-body__inner {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.p-order-body__heading {
  font-size: 36px;
  line-height: calc(58 / 36);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-order-body__heading {
    font-size: clamp(18px, 5.625vw, 24px);
    line-height: 1.5;
  }
}

.p-order-body__form {
  margin-top: 32px;
}

@media screen and (max-width: 768px) {
  .p-order-body__form {
    margin-top: 4%;
  }
}
}

@layer page{

.p-repair-mv {
  position: relative;
}

.p-repair-mv__visual > .-img {
  display: block;
  width: 100%;
}

.p-repair-mv__heading {
  position: absolute;
  bottom: 10%;
  left: calc(100 / 1280 * 100vw);
}

.p-repair-mv__heading .-img {
  width: calc(584 / 1280 * 100vw);
}

@media screen and (max-width: 768px) {
  .p-repair-mv__heading .-img {
    width: calc(145 / 320 * 100vw);
  }
}
.p-repair-mv__heading .-main {
  font-size: clamp(14px, calc(28 / 1280 * 100vw), 999px);
  color: white;
  margin-top: 3%;
}
}

@layer page{

.p-repair-about {
  padding-top: 50px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .p-repair-about {
    padding-top: 5%;
    padding-bottom: 4%;
  }
}

.p-repair-about__heading {
  font-size: 36px;
  line-height: calc(58 / 36);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-repair-about__heading {
    font-size: clamp(18px, 5.625vw, 24px);
  }
}

.p-repair-about__layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
}

@media screen and (max-width: 768px) {
  .p-repair-about__layout {
    grid-template-columns: 1fr;
  }
}

.p-repair-about__right {
  margin-top: -35px;
}

@media screen and (max-width: 768px) {
  .p-repair-about__right {
    margin-top: 3%;
  }
}

.p-repair-about__text {
  font-size: 16px;
  line-height: calc(30 / 16);
  width: 80%;
  margin-top: 15px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .p-repair-about__text {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: calc(44 / 24);
    width: 100%;
    margin-top: 3%;
  }
}

.p-repair-about__thumbnail {
  display: grid;
  place-items: center;
}

@media screen and (max-width: 768px) {
  .p-repair-about__thumbnail .-img {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-repair-about__list {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .p-repair-about__list {
    margin-top: 3%;
  }
}

.p-repair-about__item {
  font-size: 28px;
  line-height: calc(52 / 28);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-repair-about__item {
    font-size: clamp(14px, 4.375vw, 18px);
    line-height: calc(44 / 24);
    margin-top: 1%;
  }
}

.p-repair-about__item::before {
  content: "▼";
  color: #c1272d;
  display: inline-block;
  transform: rotate(-90deg);
}
.p-repair-about__lower {
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.p-repair-about__position {
  margin-top: 10px;
  font-size: 16px;
  line-height: calc(24 / 16);
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .p-repair-about__position {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: 1.5;
  }
}

.p-repair-about__name {
  display: flex;
  align-items: flex-end;
  column-gap: 10px;
}
.p-repair-about__name .-ja {
  font-size: 28px;
  line-height: calc(40 / 28);
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .p-repair-about__name .-ja {
    font-size: clamp(16px, 5vw, 21px);
    line-height: 1.5;
  }
}

.p-repair-about__name .-en {
  font-size: 16px;
  line-height: calc(24 / 16);
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .p-repair-about__name .-en {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: 1.5;
  }
}

.p-repair-about__attention {
  color: var(--color-repair);
  font-size: 22px;
  line-height: calc(36 / 22);
  font-weight: 700;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .p-repair-about__attention {
    font-size: clamp(14px, 4.375vw, 18px);
    line-height: 1.5;
    margin-top: 6%;
  }
}

.p-repair-about__box {
  padding: 18px 20px;
  border: 3px solid var(--color-repair);
  font-size: 16px;
  line-height: calc(30 / 16);
  margin-top: 15px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .p-repair-about__box {
    padding: 4% 4%;
    border: 2px solid var(--color-repair);
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: calc(44 / 24);
    margin-top: 3%;
  }
}

.p-repair-about__box-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
}

@media screen and (max-width: 768px) {
  .p-repair-about__box-columns {
    grid-template-columns: 1fr;
    row-gap: calc(13 / 320 * 100vw);
  }
}

.p-repair-about__subheading {
  font-size: 28px;
  line-height: calc(40 / 28);
  font-weight: 500;
  margin-top: 45px;
}

@media screen and (max-width: 768px) {
  .p-repair-about__subheading {
    font-size: clamp(16px, 5vw, 21px);
    line-height: 1.5;
    margin-top: 6%;
  }
}

.p-repair-about__subheading::first-letter {
  color: var(--color-repair);
}

.p-repair-about__flow {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .p-repair-about__flow {
    margin-top: 3%;
  }
}

.p-repair-about__box-list .-emphasis {
  background-color: #ffdd00;
  font-weight: 700;
}
}

@layer page{

.p-repair-case {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .p-repair-case {
    padding-bottom: 10%;
  }
}

.p-repair-case__heading {
  background-color: var(--color-repair);
  padding: 36px 45px;
  color: white;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  column-gap: 60px;
}

@media screen and (max-width: 768px) {
  .p-repair-case__heading {
    flex-direction: column;
    align-items: flex-start;
    padding: 3% 6%;
    column-gap: unset;
  }
}

.p-repair-case__heading .-en {
  font-size: 72px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.05em;
}

@media screen and (max-width: 768px) {
  .p-repair-case__heading .-en {
    font-size: clamp(30px, 9.375vw, 40px);
  }
}

.p-repair-case__heading .-ja {
  font-size: 28px;
  line-height: calc(40 / 28);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-repair-case__heading .-ja {
    font-size: clamp(14px, 4.375vw, 18px);
    line-height: 1.5;
  }
}

.p-repair-case__item {
  padding-top: 60px;
}

@media screen and (max-width: 768px) {
  .p-repair-case__item {
    padding-top: 8%;
  }
}
}

@layer page{

.p-repair-note {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .p-repair-note {
    padding-bottom: 0%;
  }
}

.p-repair-note__inner {
  max-width: 686px;
  margin-left: auto;
  margin-right: auto;
}

.p-repair-note__upper {
  background-color: #86322a;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 15px;
  padding: 6px 10px;
}

.p-repair-note__heading {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: calc(34 / 22);
}

@media screen and (max-width: 768px) {
  .p-repair-note__heading {
    font-size: clamp(16px, 5vw, 22px);
  }
}

.p-repair-note__lower {
  border: 3px solid #86322a;
  border-top: none;
  padding: 20px 36px;
}

@media screen and (max-width: 768px) {
  .p-repair-note__lower {
    padding: 5% 6%;
  }
}

.p-repair-note__text {
  font-size: 16px;
  line-height: calc(30 / 16);
}

@media screen and (max-width: 768px) {
  .p-repair-note__text {
    font-size: clamp(12px, 3.75vw, 16px);
  }
}
}

@layer page{

.p-showroom-mv {
  position: relative;
}

.p-showroom-mv__visual > .-img {
  display: block;
  width: 100%;
}

.p-showroom-mv__heading {
  position: absolute;
  bottom: 9%;
  right: calc(50 / 1280 * 100vw);
}

.p-showroom-mv__heading .-img {
  width: calc(499 / 1280 * 100vw);
}

@media screen and (max-width: 768px) {
  .p-showroom-mv__heading .-img {
    width: calc(140 / 320 * 100vw);
  }
}

.p-showroom-mv__heading .-main {
  font-size: clamp(14px, calc(28 / 1280 * 100vw), 999px);
  color: white;
  margin-top: 3%;
}
}

@layer page{

.p-showroom-second {
  padding-top: 45px;
  padding-bottom: 45px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-showroom-second {
    padding-top: 6%;
    padding-bottom: 6%;
  }
}

.p-showroom-second__heading {
  font-weight: 500;
  font-size: 36px;
  line-height: calc(58 / 36);
}

@media screen and (max-width: 768px) {
  .p-showroom-second__heading {
    font-size: clamp(18px, 5.625vw, 24px);
  }
}

.p-showroom-brand__box {
  color: white;
  background-color: #55210b;
  padding: 40px 6% 55px;
}

@media screen and (max-width: 768px) {
  .p-showroom-brand__box {
    padding: 6% var(--gutter) 6%;
  }
}

.p-showroom-brand__upper {
  display: grid;
  grid-template-columns: 1.8fr 182px 3.5fr;
  column-gap: 2%;
}

@media screen and (max-width: 768px) {
  .p-showroom-brand__upper {
    grid-template-columns: 2fr minmax(120px, 1fr);
    align-items: center;
  }
  .p-showroom-brand__upper > *:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
  }
  .p-showroom-brand__upper > *:nth-child(2) {
    grid-area: 1 / 2 / 2 / 3;
    align-self: flex-start;
  }
  .p-showroom-brand__upper > *:nth-child(3) {
    grid-area: 2 / 1 / 3 / 3;
  }
}
.p-showroom-brand__heading {
  padding-top: 10px;
}

@media screen and (max-width: 768px) {
  .p-showroom-brand__heading {
    padding-top: unset;
  }
}

.p-showroom-brand__heading .-ja {
  font-size: 16px;
  line-height: calc(34 / 16);
  font-weight: 500;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .p-showroom-brand__heading .-ja {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: 1.5;
    margin-top: 3%;
  }
}

.p-showroom-brand__thumbnail .-img {
  border-radius: 999em;
}

.p-showroom-brand__text {
  font-size: 16px;
  line-height: calc(32 / 16);
  font-weight: 500;
  padding-left: 9%;
}

@media screen and (max-width: 768px) {
  .p-showroom-brand__text {
    padding-left: unset;
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: calc(44 / 24);
    margin-top: 3%;
  }
}

.p-showroom-brand__lower {
  margin-top: 25px;
}

@media screen and (max-width: 768px) {
  .p-showroom-brand__lower {
    margin-top: 6%;
  }
}

.p-showroom-brand__pics {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.p-showroom-brand__pic .-img {
  width: 100%;
  object-fit: cover;
}
}

@layer page{

.p-showroom-lineup {
  padding-top: 75px;
  padding-bottom: 40px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-showroom-lineup {
    padding-top: 6%;
    padding-bottom: 6%;
  }
}

.p-showroom-lineup__item {
  padding-top: 30px;
  padding-bottom: 40px;
  border-top: 1px solid;
}

@media screen and (max-width: 768px) {
  .p-showroom-lineup__item {
    padding-top: 6%;
    padding-bottom: 6%;
  }

  .p-showroom-lineup__item:last-of-type {
    padding-bottom: unset;
  }
}
}

@layer page{

.p-showroom-purchase {
  padding-top: 75px;
  padding-bottom: 110px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-showroom-purchase {
    padding-top: 6%;
    padding-bottom: 6%;
  }
}

.p-showroom-purchase__button {
  border: 4px solid;
  color: #c1272d;
  min-height: 84px;
  display: grid;
  place-items: center;
  width: min(560px, 100%);
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 18px 1fr 18px;
  padding-left: 18px;
  padding-right: 18px;
  transition: opacity 0.2s;
}

@media screen and (max-width: 768px) {
  .p-showroom-purchase__button {
    border: 2px solid;
    min-height: 50px;
    grid-template-columns: 14px 1fr 14px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .p-showroom-purchase__arrow {
    width: 12px;
  }
}

.p-showroom-purchase__button:hover {
  opacity: 0.8;
}

.p-showroom-purchase__button-text {
  font-size: 28px;
  line-height: calc(44 / 28);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-showroom-purchase__button-text {
    font-size: clamp(16px, 5vw, 21px);
    line-height: calc(44 / 24);
  }
}
}

@layer page{

.p-showroom-payment {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-showroom-payment {
    padding-top: 3%;
    padding-bottom: 3%;
  }
}

.p-showroom-payment__heading {
  background-color: #86322a;
  font-size: 28px;
  line-height: calc(36 / 28);
  color: white;
  font-weight: 700;
  padding: 0.7em 1.7em;
}

@media screen and (max-width: 768px) {
  .p-showroom-payment__heading {
    font-size: clamp(16px, 5vw, 21px);
    padding: 0.5em 1em;
  }
}

.p-showroom-payment__lead {
  font-weight: 700;
  font-size: 22px;
  line-height: calc(36 / 22);
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .p-showroom-payment__lead {
    font-size: clamp(14px, 4.375vw, 18px);
    line-height: calc(44 / 24);
    margin-top: 3%;
  }
}

.p-showroom-payment__lead::first-letter {
  color: #86322a;
}

.p-showroom-payment__text {
  margin-top: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: calc(28 / 16);
}

@media screen and (max-width: 768px) {
  .p-showroom-payment__text {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: calc(44 / 24);
    margin-top: 2%;
  }
}
}

@layer page{

.p-showroom-return {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-showroom-return {
    padding-top: 3%;
    padding-bottom: 3%;
  }
}

.p-showroom-return__heading {
  background-color: #86322a;
  font-size: 28px;
  line-height: calc(36 / 28);
  color: white;
  font-weight: 700;
  padding: 0.7em 1.7em;
}

@media screen and (max-width: 768px) {
  .p-showroom-return__heading {
    font-size: clamp(16px, 5vw, 21px);
    padding: 0.5em 1em;
  }
}

.p-showroom-return__text {
  margin-top: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: calc(28 / 16);
  width: calc(622 / 1080 * 100%);
}

@media screen and (max-width: 768px) {
  .p-showroom-return__text {
    width: 100%;
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: calc(44 / 24);
    margin-top: 2%;
  }
}
.p-showroom-return__note {
  margin-top: 10px;
  color: #86322a;
  font-size: 16px;
  line-height: calc(28 / 16);
  width: calc(622 / 1080 * 100%);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-showroom-return__note {
    width: 100%;
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: calc(44 / 24);
    margin-top: 2%;
  }
}
}

@layer page{

.p-showroom-legal {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-showroom-legal {
    padding-top: 3%;
    padding-bottom: 3%;
  }
}

.p-showroom-legal__heading {
  font-size: 28px;
  line-height: calc(44 / 28);
  font-weight: 700;
  border-bottom: 1px solid;
  padding-bottom: 0.5em;
}

@media screen and (max-width: 768px) {
  .p-showroom-legal__heading {
    font-size: clamp(16px, 5vw, 21px);
    line-height: calc(44 / 24);
  }
}

.p-showroom-legal__layout {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 500fr 570fr;
}

@media screen and (max-width: 768px) {
  .p-showroom-legal__layout {
    grid-template-columns: 1fr;
    row-gap: calc(13 / 320 * 100vw);
    margin-top: 3%;
  }
}

.p-showroom-legal__layout > *:nth-child(1) {
  padding-right: 10%;
}

@media screen and (max-width: 768px) {
  .p-showroom-legal__layout > *:nth-child(1) {
    padding-right: unset;
  }
}

.p-showroom-legal__list {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 20px;
}

@media screen and (max-width: 768px) {
  .p-showroom-legal__list {
    grid-template-columns: 1fr;
    column-gap: 4%;
  }
}

.p-showroom-legal__head {
  font-size: 16px;
  line-height: calc(30 / 16);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-showroom-legal__head {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: calc(44 / 24);
  }
}

.p-showroom-legal__body {
  font-size: 16px;
  line-height: calc(30 / 16);
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .p-showroom-legal__body {
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: calc(44 / 24);
  }
}

.p-showroom-legal__subheading {
  font-weight: 700;
  font-size: 16px;
  line-height: calc(30 / 16);
}

@media screen and (max-width: 768px) {
  .p-showroom-legal__subheading {
    font-size: clamp(14px, 3.75vw, 18px);
    line-height: calc(44 / 24);
  }
}

.p-showroom-legal__subheading::first-letter {
  color: #86322a;
}
}

@layer page{
.p-top-mv {
  max-height: 100lvh;
}
.p-top-mv__slider {
  max-height: 100lvh;
  height: 100%;
}

.p-top-mv__slider * {
  max-height: 100lvh;
}
}

@layer page{

.p-top-slide {
  position: relative;
  height: 100%;
}

.p-top-slide__bg {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p-top-slide__bg .-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* slide 01 */
.p-top-slide__trust {
  position: absolute;
  top: 46%;
  left: 50%;
  translate: -50% -50%;
  width: calc(705 / 1280 * 100vw);
}

@media screen and (max-width: 768px) {
  .p-top-slide__trust {
    width: calc(200 / 320 * 100vw);
    top: 42%;
  }
}
.p-top-slide__logo-01 {
  position: absolute;
  top: 44%;
  left: 50%;
  translate: -50% -50%;
  width: calc(511 / 1280 * 100vw);
  visibility: hidden;
}

@media screen and (max-width: 768px) {
  .p-top-slide__logo-01 {
    width: calc(145 / 320 * 100vw);
  }
}
.p-top-slide__sub-01-01 {
  position: absolute;
  bottom: 8%;
  width: calc(196 / 1280 * 100vw);
  left: 7%;
}

@media screen and (max-width: 768px) {
  .p-top-slide__sub-01-01 {
    width: calc(72 / 320 * 100vw);
    left: 3%;
    bottom: 10%;
  }
}
.p-top-slide__sub-01-02 {
  position: absolute;
  bottom: 8%;
  left: 50%;
  translate: -50% 0;
  width: calc(244 / 1280 * 100vw);
}
@media screen and (max-width: 768px) {
  .p-top-slide__sub-01-02 {
    left: 48%;
    bottom: 10%;
    width: calc(90 / 320 * 100vw);
  }
}
.p-top-slide__sub-01-03 {
  position: absolute;
  bottom: 9%;
  right: 8%;
  width: calc(203 / 1280 * 100vw);
}
@media screen and (max-width: 768px) {
  .p-top-slide__sub-01-03 {
    right: 6%;
    bottom: 10%;
    width: calc(72 / 320 * 100vw);
  }
}
/* slide 02 */
.p-top-slide__logo-02 {
  position: absolute;
  top: 53%;
  left: 5%;
  translate: 0% -50%;
  width: calc(365 / 1280 * 100vw);
  visibility: hidden;
}

@media screen and (max-width: 768px) {
  .p-top-slide__logo-02 {
    width: calc(127 / 320 * 100vw);
    top: unset;
    bottom: 9%;
    translate: unset;
    left: 6.1%;
  }
}
.p-top-slide__sub-02-01 {
  position: absolute;
  top: 52%;
  right: 8%;
  translate: 0 -50%;
  width: calc(223 / 1280 * 100vw);
}

@media screen and (max-width: 768px) {
  .p-top-slide__sub-02-01 {
    width: calc(86 / 320 * 100vw);
    top: unset;
    bottom: 15%;
    right: 6%;
  }
}

/* slide 03 */
.p-top-slide__logo-03 {
  position: absolute;
  top: 17%;
  right: 13%;
  translate: 0% 0%;
  width: calc(347 / 1280 * 100vw);
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .p-top-slide__logo-03 {
    width: calc(109 / 320 * 100vw);
    top: 8%;
    right: 10%;
  }
}
.p-top-slide__sub-03-01 {
  position: absolute;
  bottom: 36%;
  right: 19%;
  translate: 0% 0%;
  width: calc(266 / 1280 * 100vw);
}
@media screen and (max-width: 768px) {
  .p-top-slide__sub-03-01 {
    width: calc(106 / 320 * 100vw);
    top: unset;
    bottom: 36%;
    right: 11%;
  }
}

/* slide 04 */
.p-top-slide__logo-04 {
  position: absolute;
  bottom: 5%;
  left: 5%;
  translate: 0% 0%;
  width: calc(354 / 1280 * 100vw);
  visibility: hidden;
}

@media screen and (max-width: 768px) {
  .p-top-slide__logo-04 {
    width: calc(125 / 320 * 100vw);
    bottom: 4.5%;
    left: 6%;
  }
}
.p-top-slide__sub-04-01 {
  position: absolute;
  bottom: 4.5%;
  left: 34%;
  translate: 0% 0%;
  width: calc(369 / 1280 * 100vw);
}

@media screen and (max-width: 768px) {
  .p-top-slide__sub-04-01 {
    width: calc(155 / 320 * 100vw);
    left: unset;
    right: 4%;
  }
}
}

@layer page{

.p-top-business {
  padding-top: 90px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-top-business {
    padding-top: 8%;
  }
}

.p-top-business__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .p-top-business__row {
    grid-template-columns: 1fr;
  }
}

.p-top-business__row:nth-of-type(2) {
  margin-top: 30px;
}
.p-top-business__row:nth-of-type(3) {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .p-top-business__row:nth-of-type(2),
  .p-top-business__row:nth-of-type(3) {
    margin-top: 15%;
  }
}

.p-top-business__left {
  margin-left: -80px;
}

@media screen and (max-width: 768px) {
  .p-top-business__left {
    margin-left: -17%;
    margin-right: 17%;
  }
}

.p-top-business__right {
  padding-left: 6%;
  padding-bottom: 70px;
}

@media screen and (max-width: 768px) {
  .p-top-business__right {
    padding-left: 15%;
    padding-bottom: 0;
    padding-top: 8%;
  }
}

.p-top-business__row:nth-child(2n) > .p-top-business__right {
  padding-right: 6%;
  padding-left: 11%;
  padding-bottom: 0;
}

@media screen and (max-width: 768px) {
  .p-top-business__row:nth-child(2n) > .p-top-business__right {
    padding-right: 0;
    padding-left: 15%;
  }
}

.p-top-business__row:nth-child(2) .p-top-business__heading {
  margin-top: 40px;
}
.p-top-business__row:nth-child(2) .p-top-business__buttons {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .p-top-business__row:nth-child(2) .p-top-business__heading {
    margin-top: 3%;
  }
  .p-top-business__row:nth-child(2) .p-top-business__buttons {
    margin-top: 4%;
  }
}

.p-top-business__row:nth-child(2n) > *:nth-child(1) {
  order: 2;
}

@media screen and (max-width: 768px) {
  .p-top-business__row:nth-child(2n) > *:nth-child(1) {
    order: unset;
  }
}
.p-top-business__row:nth-child(2n) > .p-top-business__left {
  margin-left: unset;
  translate: -13%;
}

@media screen and (max-width: 768px) {
  .p-top-business__row:nth-child(2n) > .p-top-business__left {
    translate: unset;
    margin-left: 15%;
    margin-right: unset;
  }
}

.p-top-business__logo > .-img {
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .p-top-business__row:nth-child(1) .p-top-business__logo > .-img {
    max-width: clamp(130px, calc(130 / 320 * 100vw), 220px);
  }
  .p-top-business__row:nth-child(2) .p-top-business__logo > .-img {
    max-width: clamp(213px, calc(213 / 320 * 100vw), 425px);
  }
  .p-top-business__row:nth-child(3) .p-top-business__logo > .-img {
    max-width: clamp(161px, calc(161 / 320 * 100vw), 322px);
  }
}

.p-top-business__heading {
  margin-top: 20px;
  font-size: 36px;
  line-height: calc(54 / 36);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-top-business__heading {
    font-size: clamp(18px, 5.625vw, 24px);
    line-height: 1.5;
    margin-top: 3%;
  }
}

.p-top-business__text {
  margin-top: 10px;
  font-size: 22px;
  line-height: calc(40 / 22);
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .p-top-business__text {
    font-size: clamp(14px, 4.375vw, 18px);
    line-height: calc(44 / 24);
    margin-top: 1%;
  }
}

.p-top-business__buttons {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin-top: 25px;
}

@media screen and (max-width: 768px) {
  .p-top-business__buttons {
    row-gap: calc(17 / 320 * 100vw);
    margin-top: 4%;
    width: 82%;
  }
}

.p-top-business__buttons > .c-button-ribbon {
  width: min(100%, 360px);
}
}

@layer page{

.p-top-news {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-top: 65px;
  /* padding-bottom: 75px; */
}

@media screen and (max-width: 768px) {
  .p-top-news {
    padding-top: 13%;
    /* padding-bottom: 11%; */
  }
}
.p-top-news__heading {
  font-size: 72px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.03em;
}

@media screen and (max-width: 768px) {
  .p-top-news__heading {
    font-size: 36px;
  }
}

.p-top-news__list {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  column-gap: 8%;
  row-gap: 60px;
}

@media screen and (max-width: 768px) {
  .p-top-news__list {
    grid-template-columns: 1fr;
    margin-top: 5%;
    row-gap: 30px;
  }
}

.p-top-news__button {
  display: grid;
  place-items: center;
  margin-top: 55px;
}

@media screen and (max-width: 768px) {
  .p-top-news__button {
    margin-top: 12%;
  }
}
}

@layer page{

.p-top-second {
  padding-top: 60px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-top-second {
    padding-top: 5%;
  }
}

.p-top-second__heading {
  font-weight: 700;
  font-size: 36px;
  line-height: calc(60 / 36);
}

@media screen and (max-width: 768px) {
  .p-top-second__heading {
    font-size: clamp(16px, 5vw, 21px);
    line-height: calc(52 / 32);
  }
}

.p-top-second__logo {
  margin-top: 55px;
  display: flex;
  justify-content: center;
  column-gap: 30px;
  flex-wrap: wrap;
  row-gap: 30px;
}

@media screen and (max-width: 768px) {
  .p-top-second__logo {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
    margin-top: 8%;
  }
}
.p-top-second__button {
  margin-top: 50px;
  display: grid;
  place-items: center;
}

@media screen and (max-width: 768px) {
  .p-top-second__button {
    margin-top: 11%;
  }
}
}

@layer page{

.p-top-instagram {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-top: 65px;
  /* padding-bottom: 75px; */
}

@media screen and (max-width: 768px) {
  .p-top-instagram {
    padding-top: 13%;
    /* padding-bottom: 11%; */
  }
}
.p-top-instagram__heading {
  font-size: 72px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.03em;
}

@media screen and (max-width: 768px) {
  .p-top-instagram__heading {
    font-size: 36px;
  }
}
.p-top-instagram__list {
  margin-top: 35px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 4%;
  row-gap: 60px;
}

@media screen and (max-width: 768px) {
  .p-top-instagram__list {
    grid-template-columns: 1fr;
    margin-top: 5%;
    row-gap: 30px;
  }
}

.p-top-instagram__item {
  display: grid;
  justify-items: center;
}

.p-top-instagram__item > * {
  width: 100% !important;
  min-width: unset !important;
}
}

@layer page{

.p-top-youtube {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-top: 65px;
  padding-bottom: 75px;
}

@media screen and (max-width: 768px) {
  .p-top-youtube {
    padding-top: 13%;
    padding-bottom: 11%;
  }
}
.p-top-youtube__heading {
  font-size: 72px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.03em;
}

@media screen and (max-width: 768px) {
  .p-top-youtube__heading {
    font-size: 36px;
  }
}

.p-top-youtube__list {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  column-gap: 8%;
  row-gap: 60px;
}

@media screen and (max-width: 768px) {
  .p-top-youtube__list {
    grid-template-columns: 1fr;
    margin-top: 5%;
    row-gap: 30px;
  }
}

.p-top-youtube__button {
  display: grid;
  place-items: center;
  margin-top: 55px;
}

@media screen and (max-width: 768px) {
  .p-top-youtube__button {
    margin-top: 12%;
  }
}
}

@layer page{

.p-top-tiktok {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-top: 65px;
  padding-bottom: 75px;
}

@media screen and (max-width: 768px) {
  .p-top-tiktok {
    padding-top: 13%;
    padding-bottom: 11%;
  }
}
.p-top-tiktok__heading {
  font-size: 72px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.03em;
}

@media screen and (max-width: 768px) {
  .p-top-tiktok__heading {
    font-size: 36px;
  }
}

.p-top-tiktok__list {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  column-gap: 8%;
  row-gap: 60px;
}

@media screen and (max-width: 768px) {
  .p-top-tiktok__list {
    grid-template-columns: 1fr;
    margin-top: 5%;
    row-gap: 30px;
  }
}

.p-top-tiktok__button {
  display: grid;
  place-items: center;
  margin-top: 55px;
}

@media screen and (max-width: 768px) {
  .p-top-tiktok__button {
    margin-top: 12%;
  }
}
}

@layer page{

.p-legal-body {
  padding-top: calc(var(--height-header) * 1px + 60px);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .p-legal-body {
    padding-top: 7%;
    padding-bottom: 7%;
  }
}

.p-legal-body__heading {
  font-size: 36px;
  line-height: calc(58 / 36);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-legal-body__heading {
    font-size: clamp(18px, 5.625vw, 24px);
    line-height: calc(44 / 24);
  }
}

.p-legal-body__body {
  margin-top: 32px;
  font-size: 16px;
  line-height: calc(30 / 16);
}

@media screen and (max-width: 768px) {
  .p-legal-body__body {
    margin-top: 4%;
    font-size: clamp(12px, 3.75vw, 16px);
    line-height: calc(44 / 24);
  }
}

.p-legal-body__body h2 {
  font-size: 20px;
  line-height: calc(34 / 20);
  font-weight: 700;
  margin-top: 40px;
  padding-bottom: 0.4em;
  border-bottom: 1px solid var(--color-primary);
}

@media screen and (max-width: 768px) {
  .p-legal-body__body h2 {
    font-size: clamp(14px, 4.375vw, 18px);
    line-height: calc(44 / 24);
    margin-top: 5%;
  }
}

.p-legal-body__body h3 {
  font-size: 18px;
  line-height: calc(30 / 18);
  font-weight: 700;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .p-legal-body__body h3 {
    font-size: clamp(14px, 4.375vw, 18px);
    line-height: calc(44 / 24);
    margin-top: 4%;
  }
}

.p-legal-body__body p {
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .p-legal-body__body p {
    margin-top: 3%;
  }
}

.p-legal-body__body ul {
  margin-top: 12px;
  padding-left: 1.5em;
  list-style: disc;
}

.p-legal-body__body ul li {
  margin-top: 4px;
}

.p-legal-body__body a {
  color: var(--color-link);
  text-decoration: underline;
}

.p-legal-body__body a:hover {
  text-decoration: none;
}
}

@layer page{

.p-archive-body {
  padding-top: calc(var(--height-header) * 1px + 60px);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-bottom: 60px;
}

.p-archive-body__heading {
  font-size: 72px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .p-archive-body__heading {
    font-size: 36px;
  }
}
.p-archive-body__list {
  margin-top: 35px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 8%;
  row-gap: 60px;
  list-style: none;
}

@media screen and (max-width: 768px) {
  .p-archive-body__list {
    grid-template-columns: 1fr;
  }
}

.p-archive-body__empty {
  text-align: center;
  font-size: 16px;
  color: #666;
}

.p-archive-pagination {
  display: grid;
  place-items: center;
  padding-bottom: 80px;
}
}

@layer page{

.p-single-post {
  padding-top: calc(var(--height-header) * 1px + 60px);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-bottom: 80px;
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .p-single-post {
    padding-top: 7%;
    padding-bottom: 10%;
  }
}

/* ----------------------------------------
 * Head
 * ---------------------------------------- */
.p-single-post__heading {
  font-size: 28px;
  line-height: calc(44 / 28);
  font-weight: 700;
}

.p-single-post__heading > a {
  color: inherit;
}

@media screen and (max-width: 768px) {
  .p-single-post__heading {
    font-size: clamp(18px, 5.625vw, 24px);
    line-height: calc(36 / 24);
  }
}

.p-single-post__meta {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  margin-top: 16px;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .p-single-post__meta {
    font-size: clamp(11px, 3.4375vw, 14px);
    margin-top: 3%;
    row-gap: 8px;
  }
}

.p-single-post__date {
  color: #666;
  text-align: right;
}

.p-single-post__category-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 8px;
  row-gap: 4px;
}

.p-single-post__category-link {
  display: inline-block;
  padding: 0.2em 0.8em;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  transition: opacity 0.2s;
}

.p-single-post__category-link:hover {
  opacity: 0.7;
}

.p-single-post__tag-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 8px;
  row-gap: 4px;
}

.p-single-post__tag-link {
  color: var(--color-primary);
  font-size: 13px;
  transition: opacity 0.2s;
}

.p-single-post__tag-link::before {
  content: "#";
}

.p-single-post__tag-link:hover {
  opacity: 0.7;
}

/* ----------------------------------------
 * Thumbnail
 * ---------------------------------------- */
.p-single-post__thumbnail {
  margin-top: 32px;
}

.p-single-post__thumbnail > img {
  width: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 768px) {
  .p-single-post__thumbnail {
    margin-top: 5%;
  }
}

/* ----------------------------------------
 * Body
 * ---------------------------------------- */
.p-single-post__body {
  margin-top: 40px;
  font-size: 16px;
  line-height: calc(30 / 16);
}

@media screen and (max-width: 768px) {
  .p-single-post__body {
    margin-top: 6%;
    font-size: clamp(13px, 4.0625vw, 16px);
  }
}

/* ----------------------------------------
 * Pagination (wp_link_pages)
 * ---------------------------------------- */
.p-single-post__pagination {
  display: grid;
  place-items: center;
  padding-top: 40px;
}

.p-single-post__page-links {
  display: flex;
  align-items: center;
  column-gap: 8px;
}

.p-single-post__page-links > span {
  display: grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  padding-left: 8px;
  padding-right: 8px;
  font-size: 14px;
  line-height: 1;
  border: 1px solid var(--color-primary);
  background-color: var(--color-primary);
  color: #fff;
}

.p-single-post__page-links > a > span {
  display: grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  padding-left: 8px;
  padding-right: 8px;
  font-size: 14px;
  line-height: 1;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  background-color: #fff;
  transition: background-color 0.2s, color 0.2s;
}

.p-single-post__page-links > a:hover > span {
  background-color: var(--color-primary);
  color: #fff;
}

@media screen and (max-width: 768px) {
  .p-single-post__pagination {
    padding-top: 6%;
  }
}

/* ----------------------------------------
 * Navigation
 * ---------------------------------------- */
.p-single-post__navigation {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .p-single-post__navigation {
    margin-top: 10%;
  }
}
}

@layer page{

.p-page-post {
  padding-top: calc(var(--height-header) * 1px + 60px);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-bottom: 80px;
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .p-page-post {
    padding-top: 7%;
    padding-bottom: 10%;
  }
}

/* ----------------------------------------
 * Head
 * ---------------------------------------- */
.p-page-post__heading {
  font-size: 28px;
  line-height: calc(44 / 28);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-page-post__heading {
    font-size: clamp(18px, 5.625vw, 24px);
    line-height: calc(36 / 24);
  }
}

/* ----------------------------------------
 * Thumbnail
 * ---------------------------------------- */
.p-page-post__thumbnail {
  margin-top: 32px;
}

.p-page-post__thumbnail > img {
  width: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 768px) {
  .p-page-post__thumbnail {
    margin-top: 5%;
  }
}

/* ----------------------------------------
 * Body
 * ---------------------------------------- */
.p-page-post__body {
  margin-top: 40px;
  font-size: 16px;
  line-height: calc(30 / 16);
}

@media screen and (max-width: 768px) {
  .p-page-post__body {
    margin-top: 6%;
    font-size: clamp(13px, 4.0625vw, 16px);
  }
}
}

@layer javascript{
/* JavaScript アニメーション用スタイル */
}

@layer utility{

.u-visually-hidden {
  border: 0 !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.u-hidden {
  display: none !important;
}

.u-overflow-hidden {
  overflow: hidden;
}

.u-clamp-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--line-clamp);
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 768px) {
  .u-md-hidden {
    display: none;
  }
}
.u-md-visible {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-md-visible {
    display: revert;
  }
}
@media screen and (max-width: 1024px) {
  .u-lg-hidden {
    display: none;
  }
}
.u-lg-visible {
  display: none;
}
@media screen and (max-width: 1024px) {
  .u-lg-visible {
    display: revert;
  }
}

@media screen and (max-width: 1280px) {
  .u-xl-hidden {
    display: none;
  }
}
.u-xl-visible {
  display: none;
}
@media screen and (max-width: 1280px) {
  .u-xl-visible {
    display: revert;
  }
}

.u-ib {
  display: inline-block;
}
}
